1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.2"
- defaultConfig {
- minSdkVersion 15
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- compileOnly files('../app/libs/apiEngine v3.0.0.jar')
- }
|