diff --git a/android/capacitor-admob/build.gradle b/android/capacitor-admob/build.gradle index ea6c1ea..b1759c0 100644 --- a/android/capacitor-admob/build.gradle +++ b/android/capacitor-admob/build.gradle @@ -11,10 +11,10 @@ buildscript { apply plugin: 'com.android.library' android { - compileSdkVersion 27 + compileSdkVersion 28 defaultConfig { minSdkVersion 21 - targetSdkVersion 27 + targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -42,13 +42,11 @@ repositories { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'ionic-team:capacitor-android:1+' + implementation project(':capacitor-android') testImplementation 'junit:junit:4.12' - androidTestImplementation 'com.android.support.test:runner:1.0.1' - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' - implementation 'com.google.android.gms:play-services-base:16.0.1' - implementation 'com.google.android.gms:play-services-ads:17.1.1' - implementation 'com.google.android.gms:play-services-gcm:16.0.0' - implementation 'com.google.android.gms:play-services-stats:16.0.1' + androidTestImplementation 'com.android.support.test:runner:1.0.2' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + implementation 'com.google.android.gms:play-services-ads:17.2.0' + implementation 'com.android.support:appcompat-v7:27.1.1' }