build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 33
  4. signingConfigs {
  5. release {
  6. storeFile file('SocketChat.jks')
  7. storePassword 'TxPNR4jg'
  8. keyAlias 'key0'
  9. keyPassword 'TxPNR4jg'
  10. }
  11. }
  12. defaultConfig {
  13. applicationId "com.example.socketdemo"
  14. minSdkVersion 16
  15. targetSdkVersion 31
  16. versionCode 1
  17. versionName "1.0"
  18. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled true
  23. shrinkResources true
  24. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  25. }
  26. }
  27. }
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30. // implementation 'androidx.appcompat:appcompat:1.1.0'
  31. // implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  32. // testimplementation 'junit:junit:4.12'
  33. // //ButterKnife注入
  34. // implementation 'com.jakewharton:butterknife:+'
  35. // annotationProcessor 'com.jakewharton:butterknife-compiler:+'
  36. //
  37. // //万能适配器(RecyclerView):https://github.com/hongyangAndroid/baseAdapter
  38. // implementation 'com.zhy:base-rvadapter:+'
  39. // implementation 'com.google.code.gson:gson:+'
  40. }