blob: 54db51279066979f44226a0c172342398714cf00 [file] [log] [blame] [edit]
// The Android Gradle Plugin builds the native code with the Android NDK.
group 'com.example.pdfbox_plugin'
version '1.0'
rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
android {
namespace 'com.example.pdfbox_plugin'
compileSdk flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
defaultConfig {
minSdkVersion 16
}
}