| // The Android Gradle Plugin builds the native code with the Android NDK. |
| |
| group 'com.example.notification_plugin' |
| version '1.0' |
| |
| rootProject.allprojects { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| } |
| |
| apply plugin: 'com.android.library' |
| |
| android { |
| // Bumping the plugin compileSdkVersion requires all clients of this plugin |
| // to bump the version in their app. |
| compileSdkVersion 31 |
| |
| // Bumping the plugin ndkVersion requires all clients of this plugin to bump |
| // the version in their app and to download a newer version of the NDK. |
| ndkVersion "21.1.6352462" |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| |
| defaultConfig { |
| minSdkVersion 16 |
| } |
| } |