You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1006 B
Groovy
34 lines
1006 B
Groovy
|
2 years ago
|
apply plugin: 'com.android.library'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 33
|
||
|
|
buildToolsVersion "33.0.0"
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdkVersion 15
|
||
|
|
targetSdkVersion 33
|
||
|
|
|
||
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
|
|
||
|
|
}
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
namespace 'com.vincent.videocompressor'
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
|
// androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
||
|
|
// exclude group: 'com.android.support', module: 'support-annotations'
|
||
|
|
// })
|
||
|
|
//implementation 'com.android.support:appcompat-v7:26.+'
|
||
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||
|
|
implementation 'junit:junit:4.13.2'
|
||
|
|
implementation files('libs/isoparser-1.0.6.jar')
|
||
|
|
implementation files('libs/aspectjrt-1.7.3.jar')
|
||
|
|
}
|