diff options
author | cyBerta <cyberta@riseup.net> | 2021-07-09 04:56:56 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-07-21 22:02:28 +0200 |
commit | cdefcb0d109d4558d5b9531bde2178a8b9bad0dc (patch) | |
tree | 322f1649ec57bd9aaecd469f7da590c90cca8062 /lib-bitmask-core/build.gradle | |
parent | 6d410f65f1145fd69e9417a2a99e78581630d814 (diff) |
use bitmaskcore libs in android project
Diffstat (limited to 'lib-bitmask-core/build.gradle')
-rw-r--r-- | lib-bitmask-core/build.gradle | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib-bitmask-core/build.gradle b/lib-bitmask-core/build.gradle new file mode 100644 index 00000000..0b2ba086 --- /dev/null +++ b/lib-bitmask-core/build.gradle @@ -0,0 +1,37 @@ +/*apply plugin: 'com.android.library' + +android { + compileSdkVersion 28 + buildToolsVersion "29.0.1" + + + defaultConfig { + minSdkVersion 16 + targetSdkVersion 28 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles 'consumer-rules.pro' + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + +} + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + + implementation 'androidx.appcompat:appcompat:1.2.0' + testImplementation 'junit:junit:4.12' + androidTestImplementation 'androidx.test.ext:junit:1.1.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' +} +*/ +configurations.maybeCreate("default") +artifacts.add("default", file('bitmaskcore.aar'))
\ No newline at end of file |