Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apply plugin: 'com.android.application'
- apply plugin: 'com.google.gms.google-services'
- android {
- signingConfigs {
- release {
- storeFile file('/Users/upatikmacbook/Documents/mobile/keystore/Key SFL/sisterlecturesh1.dms')
- // storeFile file('C:\\keystore\\Key SFL\\sisterlecturesh1.dms')
- storePassword 'ivandro77'
- keyAlias 'sisterforlecture'
- keyPassword 'ivandro77'
- }
- }
- defaultConfig {
- applicationId "com.unej.sisterforlecturer"
- minSdkVersion 21
- def versionMajor = 3
- def versionMinor = 5
- def versionPatch = 10
- versionCode 110
- +versionMinor * 100
- versionName "${versionMajor}.${versionMinor}.${versionPatch}"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- multiDexEnabled true
- targetSdkVersion 34
- }
- useLibrary 'org.apache.http.legacy'
- android {
- lintOptions {
- checkReleaseBuilds false
- // Or, if you prefer, you can continue to check for errors in release builds,
- // but continue the build even when errors are found:
- abortOnError false
- }
- }
- buildTypes {
- debug {
- resValue "string", "app_version",
- "${defaultConfig.versionName}${versionNameSuffix}"
- }
- beta {
- minifyEnabled false
- debuggable false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- resValue "string", "app_version",
- "${defaultConfig.versionName}${versionNameSuffix}"
- multiDexEnabled = true
- }
- release {
- debuggable false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- resValue "string", "app_version",
- "${defaultConfig.versionName}"
- multiDexEnabled = true
- signingConfig signingConfigs.release
- }
- }
- compileOptions {
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- }
- namespace 'com.unej.sisterforlecturer'
- compileSdk 34
- buildFeatures {
- buildConfig = true
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'androidx.preference:preference:1.2.1'
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- implementation 'com.google.firebase:firebase-messaging:23.4.0'
- implementation 'com.google.firebase:firebase-config:21.6.0'
- implementation 'com.google.android.gms:play-services-code-scanner:16.1.0'
- implementation 'com.android.support:multidex:1.0.3'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- implementation "androidx.annotation:annotation:1.7.1"
- implementation "androidx.annotation:annotation-experimental:1.4.0"
- /* Netwrok */
- implementation 'com.google.code.gson:gson:2.10'
- implementation 'com.squareup.retrofit2:retrofit:2.8.1'
- implementation 'com.squareup.retrofit2:converter-gson:2.8.1'
- implementation 'com.squareup.retrofit2:converter-scalars:2.8.1'
- implementation 'com.squareup.okhttp3:okhttp:4.5.0'
- implementation 'com.squareup.okhttp3:logging-interceptor:4.5.0'
- /* Material design */
- implementation 'com.google.android.material:material:1.11.0'
- /* Circular */
- implementation 'com.mikhaellopez:circularimageview:4.3.0'
- /* QRCode */
- implementation 'com.google.zxing:core:3.5.0'
- /*calendar horizontal*/
- implementation 'joda-time:joda-time:2.10.5'
- implementation 'com.squareup:otto:1.3.8'
- implementation 'com.github.vjivandro:CalendarWeekView:1.0.7'
- /*Glide*/
- implementation 'com.github.bumptech.glide:glide:4.9.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
- /**/
- implementation 'com.github.PhilJay:MPAndroidChart:v2.2.4'
- implementation 'androidx.mediarouter:mediarouter:1.6.0'
- /*Chat socket.io*/
- implementation 'com.github.nkzawa:socket.io-client:0.6.0'
- implementation 'it.xabaras.android:recyclerview-swipedecorator:1.2.2'
- /* room */
- def room_version = '2.6.1'
- implementation "androidx.room:room-runtime:$room_version"
- annotationProcessor "androidx.room:room-compiler:$room_version"
- androidTestImplementation "androidx.room:room-testing:$room_version"
- debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
- /** Android-WYSIWYG-Editor **/
- implementation 'com.github.irshulx:laser-native-editor:3.0.4'
- implementation 'com.github.duanhong169:colorpicker:1.1.1'
- implementation 'androidx.biometric:biometric:1.1.0'
- implementation 'com.google.android.gms:play-services-maps:18.2.0'
- implementation 'com.google.android.gms:play-services-location:21.1.0'
- //update app
- implementation 'com.google.android.play:core:1.10.3'
- implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
- def lottieVersion = "3.4.0"
- implementation "com.airbnb.android:lottie:$lottieVersion"
- implementation 'com.itextpdf:itextg:5.5.10'
- implementation 'com.github.MikeOrtiz:TouchImageView:1.4.1'
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement