| | |
| | | compileSdk 34 |
| | | |
| | | defaultConfig { |
| | | applicationId "com.example.firstapp" |
| | | // applicationId "com.example.firstapp" |
| | | applicationId "net.sourceforge.simcpux" |
| | | minSdk 24 |
| | | targetSdk 34 |
| | | versionCode 1 |
| | |
| | | release { |
| | | minifyEnabled false |
| | | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| | | signingConfig signingConfigs.debug |
| | | } |
| | | debug { |
| | | minifyEnabled false |
| | | debuggable true |
| | | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| | | signingConfig signingConfigs.debug |
| | | } |
| | | |
| | | } |
| | | compileOptions { |
| | | sourceCompatibility JavaVersion.VERSION_17 |
| | |
| | | excludes += ["META-INF/*.kotlin_module", "META-INF/*.version", "kotlin/**", "DebugProbesKt.bin"] |
| | | } |
| | | } |
| | | |
| | | signingConfigs { |
| | | release { |
| | | storeFile file('../keystore/sms-manager.jks') |
| | | storePassword 'Cloudroam!@#123' |
| | | keyAlias 'sm' |
| | | keyPassword 'Cloudroam!@#123' |
| | | } |
| | | |
| | | debug { |
| | | storeFile file('../keystore/keystore.jks') |
| | | storePassword 'android' |
| | | keyAlias 'android' |
| | | } |
| | | } |
| | | |
| | | |
| | | } |
| | | |
| | | dependencies { |
| | |
| | | implementation libs.androidx.navigation.ui.ktx |
| | | implementation libs.androidx.legacy.support.v4 |
| | | implementation libs.androidx.recyclerview |
| | | implementation libs.androidx.activity |
| | | testImplementation libs.junit |
| | | androidTestImplementation libs.androidx.junit |
| | | androidTestImplementation libs.androidx.espresso.core |
| | |
| | | implementation 'de.hdodenhof:circleimageview:3.1.0' |
| | | |
| | | implementation 'com.github.castorflex:SmoothProgressBar:1.1.0' |
| | | |
| | | api 'com.tencent.mm.opensdk:wechat-sdk-android:+' |
| | | |
| | | } |