I forgot to uncheck the "Ad Test Mode". I've deployed a game onto the google play store and then I've unchecked the check box of "Ad Test Mode". My unity developer said this check box connected to their server so don't worry ad will start working after 1 or 2 days.
play.google.com/console/u/0/developers/developerId/app/appId/managed-products
Идентификатор уведомления
Обычно Unity генерирует уникальный идентификатор для каждого уведомления после того, как вы его запланировали. В приведенном ниже примере показано, как получить сгенерированный идентификатор уведомления.
var id = AndroidNotificationCenter.SendNotification(notification, "channel_id");
Вы можете использовать этот идентификатор для отслеживания, отмены или обновления уведомления. В следующем примере показано, как проверить статус уведомления и выполнить какие-либо действия в зависимости от результата. Отслеживание статуса уведомлений работает только на Android 6.0 Marshmallow и выше.
var notificationStatus = AndroidNotificationCenter.CheckScheduledNotificationStatus(id); if (notificationStatus == NotificationStatus.Scheduled) { // Replace the scheduled notification with a new notification. AndroidNotificationCenter.UpdateScheduledNotification(id, newNotification, "channel_id"); } else if (notificationStatus == NotificationStatus.Delivered) { // Remove the previously shown notification from the status bar. AndroidNotificationCenter.CancelNotification(id); } else if (notificationStatus == NotificationStatus.Unknown) { AndroidNotificationCenter.SendNotification(newNotification, "channel_id"); }
// Remove the previously shown notification from the status bar.
AndroidNotificationCenter.CancelNotification(id);
eventData.pressPosition.x
можно понять, где было сделано нажатие. bool isRightClick = eventData.pressPosition.x > Screen.width / 2;
bool isLeftClick = eventData.pressPosition.x < Screen.width / 2;
Screen.width
, конечно, стоит закешировать.$rer
вернул false. title_brend
не может ссылаться сразу на 2 таблицы без указания его принадлежности к одной из них. И вы не настроили связь между таблицами в запросе.SELECT * FROM `be`, `oe`
WHERE `oe`.title_brend = '$scr_Phone'
AND`oe`.title_brend = `be`.title_brend
GetComponent<Text>()
, менять его свойство.text
и ресайзить страницу после обновления контента в соответствии с измененной длиной компонента Text
.CREATE TABLE authors
(
id INT PRIMARY KEY AUTO_INCREMENT,
author_name VARCHAR(100) NOT NULL UNIQUE
);
CREATE TABLE books
(
id INT PRIMARY KEY AUTO_INCREMENT,
book_title VARCHAR(100) NOT NULL
);
CREATE TABLE book_author_id
(
id INT PRIMARY KEY AUTO_INCREMENT,
author_id INT NOT NULL,
book_id INT NOT NULL,
FOREIGN KEY (author_id) REFERENCES authors (id) ON DELETE CASCADE,
FOREIGN KEY (book_id) REFERENCES books (id) ON DELETE CASCADE
);
SELECT authors.author_name, COUNT(book_author_id.author_id) as count
FROM authors
LEFT JOIN book_author_id
ON book_author_id.author_id= authors.id
LEFT JOIN books
ON book_author_id.book_id= books.id
GROUP BY authors.author_name
HAVING COUNT(DISTINCT book_author_id.author_id) >= 3;