build.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. applicationId "com.usai.ratradefiling"
  6. minSdkVersion 26
  7. targetSdkVersion 28
  8. versionCode 1
  9. versionName "1.0"
  10. // ndk.abiFilters 'armeabi-v7a',"arm64-v8a"
  11. // testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. // implementation fileTree(dir: "libs", include: ["*.jar"])
  22. api 'androidx.appcompat:appcompat:1.2.0'
  23. api 'androidx.legacy:legacy-support-v4:1.0.0'
  24. api 'androidx.constraintlayout:constraintlayout:2.0.4'
  25. implementation 'com.google.android.material:material:1.3.0'
  26. // implementation 'com.googlecode.libphonenumber:libphonenumber:8.12.18'
  27. // implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  28. // api 'com.android.support:support-v4:27.1.0'
  29. //
  30. implementation project(path: ':RAUtilsLibrary')
  31. // testImplementation 'junit:junit:4.12'
  32. // androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  33. // androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  34. }