build.gradle 905 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.library'
  2. ext {
  3. PUBLISH_GROUP_ID = 'com.novaapps'
  4. PUBLISH_ARTIFACT_ID = 'FloatingActionMenu'
  5. PUBLISH_VERSION = '1.0'
  6. }
  7. android {
  8. compileSdkVersion 23
  9. buildToolsVersion "23.0.1"
  10. lintOptions {
  11. abortOnError false
  12. }
  13. defaultConfig {
  14. minSdkVersion 14
  15. targetSdkVersion 23
  16. versionCode 1
  17. versionName "1.0"
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25. }
  26. dependencies {
  27. compile fileTree(include: ['*.jar'], dir: 'libs')
  28. testCompile 'junit:junit:4.12'
  29. compile 'com.android.support:appcompat-v7:23.1.0'
  30. compile 'com.android.support:design:23.1.0'
  31. }
  32. apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'