| buildscript { |
| dependencies { |
| classpath 'com.android.tools.build:gradle:8.1.0' |
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10" |
| } |
| } |
| |
| apply plugin: 'com.android.application' |
| apply plugin: 'org.jetbrains.kotlin.android' |
| |
| android { |
| compileSdk 33 |
| namespace "com.example.sdkindexapp" |
| defaultConfig { |
| minSdk 26 |
| } |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_17 |
| targetCompatibility JavaVersion.VERSION_17 |
| } |
| kotlinOptions { |
| jvmTarget = '17' |
| } |
| } |
| |
| dependencies { |
| // SDK Index (real snapshot) |
| // Console critical non blocking (only on PSD as info) |
| implementation 'com.google.android.gms:play-services-safetynet:10.0.0' |
| // Console outdated critical blocking (error) |
| implementation 'androidx.annotation:annotation:1.0.0' |
| // Console policy non blocking (warning) |
| implementation 'com.paypal.android.sdk:data-collector:3.20.0' |
| // Index critical blocking (error) |
| implementation 'com.google.android.gms:play-services-ads-lite:19.4.0' |
| // Index Policy + Outdated + critical blocking (3 errors) |
| implementation 'com.startapp:inapp-sdk:3.9.1' |
| // Index Outdated non blocking (warning) |
| implementation 'com.google.ads.interactivemedia.v3:interactivemedia:3.18.2' |
| // Index Critical + Outdated non blocking (only on PSD as info and 1 warning) |
| implementation 'io.objectbox:objectbox-android:2.5.1' |
| // Console Deprecated + Critical blocking |
| implementation 'com.google.android.play:core:1.10.3' |
| } |