drift/moor_ffi/android/build.gradle

42 lines
663 B
Groovy
Raw Normal View History

buildscript {
repositories {
google()
jcenter()
}
dependencies {
2020-01-29 02:57:07 -08:00
classpath 'com.android.tools.build:gradle:3.5.3'
}
}
group 'eu.simonbinder.moor_ffi'
version '1.0'
rootProject.allprojects {
repositories {
google()
jcenter()
2020-01-29 02:57:07 -08:00
maven {
url 'https://dl.bintray.com/sbinder/sqlite3-native-library/'
}
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
}
lintOptions {
disable 'InvalidPackage'
}
}
2020-01-29 02:57:07 -08:00
dependencies {
implementation 'eu.simonbinder:sqlite3-native-library:3.30.1'
}