Laraver android 通用且一键式配置框架,1.0基于慕课网大神傅媛媛改写。

build.gradle 772B

12345678910111213141516171819202122232425262728293031323334
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'com.jakewharton.butterknife'
  3. apply plugin: 'org.greenrobot.greendao'
  4. android {
  5. compileSdkVersion 25
  6. defaultConfig {
  7. minSdkVersion 19
  8. targetSdkVersion 25
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(include: ['*.jar'], dir: 'libs')
  22. compile project(':laraver-core')
  23. compile project(':laraver-ui')
  24. annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
  25. }