build.gradle 723 B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. applicationId "com.water.example"
  6. minSdkVersion 14
  7. targetSdkVersion 28
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. testImplementation 'junit:junit:4.12'
  21. implementation 'androidx.appcompat:appcompat:1.0.2'
  22. implementation 'com.google.android.material:material:1.1.0-alpha01'
  23. implementation project(':amraudiorecorder')
  24. }