1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- signingConfigs {
- release {
- storeFile file('SocketChat.jks')
- storePassword 'TxPNR4jg'
- keyAlias 'key0'
- keyPassword 'TxPNR4jg'
- }
- }
- defaultConfig {
- applicationId "com.example.socketdemo"
- minSdkVersion 16
- targetSdkVersion 31
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled true
- shrinkResources true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- // implementation 'androidx.appcompat:appcompat:1.1.0'
- // implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- // testimplementation 'junit:junit:4.12'
- // //ButterKnife注入
- // implementation 'com.jakewharton:butterknife:+'
- // annotationProcessor 'com.jakewharton:butterknife-compiler:+'
- //
- // //万能适配器(RecyclerView):https://github.com/hongyangAndroid/baseAdapter
- // implementation 'com.zhy:base-rvadapter:+'
- // implementation 'com.google.code.gson:gson:+'
- }
|