build.gradle 774 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion '25.0.3'
  5. defaultConfig {
  6. applicationId "com.arlib.floatingsearchviewdemo"
  7. minSdkVersion 14
  8. targetSdkVersion 25
  9. versionCode 11
  10. versionName "3.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. compile fileTree(dir: 'libs', include: ['*.jar'])
  21. compile project(":library")
  22. compile files('libs/gson-2.4.jar')
  23. compile 'com.android.support:appcompat-v7:25.3.1'
  24. compile 'com.android.support:palette-v7:25.3.1'
  25. compile 'com.android.support:support-v4:25.3.1'
  26. }