You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.7 KiB
82 lines
2.7 KiB
3 years ago
|
plugins {
|
||
|
id 'com.android.application'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 28
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "com.cst.im30"
|
||
|
minSdkVersion 22
|
||
|
//noinspection ExpiredTargetSdkVersion
|
||
|
targetSdkVersion 28
|
||
|
versionCode 1
|
||
|
versionName "1.0.0"
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation files('libs/NeptuneLiteApi_V3.00.00_20180717.jar')
|
||
|
|
||
|
//noinspection GradleDependency
|
||
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
||
|
//noinspection GradleDependency
|
||
|
implementation 'com.google.android.material:material:1.4.0'
|
||
|
//noinspection GradleDependency
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
||
|
|
||
|
//noinspection GradleDynamicVersion
|
||
|
testImplementation 'junit:junit:4.+'
|
||
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
||
|
|
||
|
// For Laravel Echo
|
||
|
implementation 'com.github.MrBin99:LaravelEchoAndroid:1.03'
|
||
|
|
||
|
//noinspection AnnotationProcessorOnCompilePath
|
||
|
implementation 'org.projectlombok:lombok:1.18.22'
|
||
|
annotationProcessor "org.projectlombok:lombok:1.18.22"
|
||
|
|
||
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
||
|
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
|
||
|
implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
|
||
|
|
||
|
//noinspection GradleDependency
|
||
|
implementation "androidx.room:room-runtime:2.3.0"
|
||
|
//noinspection GradleDependency
|
||
|
annotationProcessor "androidx.room:room-compiler:2.3.0"
|
||
|
|
||
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
||
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
|
||
|
|
||
|
//for slider
|
||
|
implementation 'com.daimajia.slider:library:1.1.5@aar'
|
||
|
implementation 'com.nineoldandroids:library:2.4.0'
|
||
|
implementation 'com.squareup.picasso:picasso:2.5.2'
|
||
|
|
||
|
implementation 'com.loopj.android:android-async-http:1.4.9'
|
||
|
implementation 'com.nex3z:flow-layout:1.2.4'
|
||
|
//noinspection GradleDynamicVersion
|
||
|
implementation 'com.android.support:recyclerview-v7:+'
|
||
|
//noinspection GradleDependency
|
||
|
implementation 'com.google.code.gson:gson:2.8.5'
|
||
|
//noinspection GradleDynamicVersion
|
||
|
implementation 'me.grantland:autofittextview:0.2.+'
|
||
|
|
||
|
debugImplementation 'com.github.amitshekhariitbhu.Android-Debug-Database:debug-db:v1.0.6'
|
||
|
|
||
|
}
|