You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there,
I have an issue I can't solve.
I try to implement Google Admob-ads into my libgdx-project. As far as android is concerned, everything works perfectly fine. But I can't set it up in iOS.
I did everything as it is explained, but still the emulator crashes a few seconds after launching the app.
The add does not show up, and some moments later the emulator leaves the app.
Any idea what I've done wrong? Is there maybe a compatibility issue with some versions of RoboVm etc.?
Hey there,
I have an issue I can't solve.
I try to implement Google Admob-ads into my libgdx-project. As far as android is concerned, everything works perfectly fine. But I can't set it up in iOS.
I did everything as it is explained, but still the emulator crashes a few seconds after launching the app.
The add does not show up, and some moments later the emulator leaves the app.
Any idea what I've done wrong? Is there maybe a compatibility issue with some versions of RoboVm etc.?
My build.gradle:
`buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.2'
}
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
}
project(":desktop") {
apply plugin: "java"
}
project(":android") {
apply plugin: "android"
}
project(":ios") {
apply plugin: "java"
apply plugin: "robovm"
}
project(":core") {
apply plugin: "java"
}
tasks.eclipse.doLast {
delete ".project"
}`
Result:
The text was updated successfully, but these errors were encountered: