build.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 false
  23. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(dir: 'libs', include: ['*.jar'])
  29. // implementation 'androidx.appcompat:appcompat:1.1.0'
  30. // implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  31. // testimplementation 'junit:junit:4.12'
  32. // //ButterKnife注入
  33. // implementation 'com.jakewharton:butterknife:+'
  34. // annotationProcessor 'com.jakewharton:butterknife-compiler:+'
  35. //
  36. // //万能适配器(RecyclerView):https://github.com/hongyangAndroid/baseAdapter
  37. // implementation 'com.zhy:base-rvadapter:+'
  38. // implementation 'com.google.code.gson:gson:+'
  39. }