| 1234567891011121314151617181920212223242526272829303132333435 |
- apply plugin: 'com.android.library'
- //apply from: 'publish.gradle'
- android {
- compileSdkVersion 27
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 27
- versionCode 1
- versionName "1.0.0"
- testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- implementation 'androidx.appcompat:appcompat:1.0.0'
- testImplementation 'junit:junit:4.12'
- implementation 'androidx.recyclerview:recyclerview:1.0.0'
- implementation 'com.github.bumptech.glide:glide:3.7.0'
- implementation 'com.bm.photoview:library:1.4.1'
- implementation 'com.google.android.material:material:1.0.0'
- implementation 'pub.devrel:easypermissions:0.3.0'
- }
|