1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles 'consumer-rules.pro'
- ndk {
- abiFilters "armeabi-v7a" // "armeabi", "x86", "arm64-v8a"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- }
- configurations {
- cleanedAnnotations
- compile.exclude group: 'org.jetbrains' , module:'annotations'
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- compile(name:'logansdk-utils-3.1.00',ext:'aar')
- compile(name:'xcrash-lib-0.0.3',ext:'aar')
- implementation 'androidx.appcompat:appcompat:1.0.2'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test.ext:junit:1.1.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
- implementation 'io.reactivex.rxjava2:rxjava:2.2.15'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
- // implementation 'com.decard.mobile:logansdk-utils:3.1.00'//德卡日志
- }
|