43 lines
949 B
Groovy
43 lines
949 B
Groovy
group 'io.malloc.ccc.ccc_fplugin'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 23
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// implementation 'io.malloc.ccc:nc-jni:1.1@aar'
|
|
// yay, we can pull wolfssl-jni.aar into our project!!
|
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
// doesn't work because google flutter team cascaded embedded spaghetti gradle dependencies
|
|
// implementation project(":nc-lib")
|
|
} |