apply plugin: 'com.android.application'
|
|
android {
|
compileSdkVersion 28
|
defaultConfig {
|
multiDexEnabled true
|
applicationId "com.basic.security"
|
minSdkVersion 21
|
targetSdkVersion 28
|
versionCode 1
|
versionName "1.0"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
externalNativeBuild {
|
cmake {
|
cppFlags "-frtti -fexceptions"
|
}
|
}
|
ndk {
|
abiFilters 'armeabi-v7a'
|
}
|
}
|
compileOptions {
|
sourceCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
externalNativeBuild {
|
cmake {
|
path "CMakeLists.txt"
|
}
|
}
|
lintOptions {
|
abortOnError false
|
}
|
useLibrary 'org.apache.http.legacy'
|
}
|
|
apply plugin: "com.android.application"
|
|
dependencies {
|
implementation 'com.android.support:support-v4:28.0.0-rc02'
|
implementation 'com.android.support:support-v13:28.0.0-rc02'
|
annotationProcessor "org.androidannotations:androidannotations:4.4.0"
|
implementation "org.androidannotations:androidannotations-api:4.4.0"
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
testImplementation 'junit:junit:4.12'
|
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
|
implementation 'com.android.support:design:28.0.0-rc01'
|
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.17'
|
implementation 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
|
implementation 'org.xutils:xutils:3.5.0'
|
implementation 'com.facebook.fresco:fresco:1.1.0'
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
implementation 'com.squareup.retrofit2:adapter-rxjava:2.4.0'
|
implementation 'com.beardedhen:androidbootstrap:2.3.2'
|
// implementation 'com.couchbase.lite:couchbase-lite-android:2.1.0'
|
implementation 'com.nightonke:jellytogglebutton:1.0.2'
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
|
implementation 'com.kyleduo.switchbutton:library:2.0.0'
|
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
|
implementation 'com.github.angads25:toggle:1.0.0'
|
implementation 'com.wdullaer:materialdatetimepicker:3.6.3'
|
implementation 'com.contrarywind:Android-PickerView:4.1.6'
|
implementation 'com.android.support:multidex:1.0.3'
|
// implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
|
implementation 'org.jsoup:jsoup:1.11.3'
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
implementation 'com.makeramen:roundedimageview:2.3.0'
|
implementation 'com.amitshekhar.android:debug-db:1.0.4'
|
// implementation 'org.tensorflow:tensorflow-android:+'
|
// implementation 'com.github.arcadefire:nice-spinner:1.4'
|
|
|
// android annotation
|
implementation "org.androidannotations:androidannotations-api:4.5.2"
|
annotationProcessor "org.androidannotations:androidannotations:4.5.2"
|
implementation "org.androidannotations:rest-spring-api:4.5.2"
|
annotationProcessor "org.androidannotations:rest-spring:4.5.2"
|
implementation "com.fasterxml.jackson.core:jackson-core:2.9.7"
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.7'
|
implementation "org.springframework.android:spring-android-rest-template:2.0.0.M3"
|
implementation 'com.github.ybq:Android-SpinKit:1.2.0'
|
implementation 'org.apache.directory.studio:org.apache.commons.io:2.4'
|
implementation 'com.rabbitmq:amqp-client:4.6.0'
|
// implementation 'com.rabbitmq:amqp-client:5.7.3'
|
// implementation ('com.rabbitmq:amqp-client:4.6.0')
|
// {
|
// exclude group: 'org.slf4j',module:"slf4j-api"
|
// }
|
// implementation 'org.springframework.android:spring-android-rest-template:1.0.1.RELEASE'
|
// implementation 'com.google.code.gson:gson:2.2.2'
|
// implementation ('org.simpleframework:simple-xml:2.6.9') {
|
// exclude group: 'stax', module: 'stax'
|
// exclude group: 'stax', module: 'stax-api'
|
// exclude group: 'xpp3', module: 'xpp3'
|
// }
|
|
}
|