美文网首页
Android build.gradle

Android build.gradle

作者: CoderBigBear | 来源:发表于2016-08-04 10:05 被阅读29次

    android

    {
        compileSdkVersion 23
        buildToolsVersion "23.0.3"
    
        defaultConfig {
            applicationId "com.wangjia.xxx"
            minSdkVersion 10
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
        }
        signingConfigs {
            mybuild {
                Properties properties = new Properties()
                properties.load(project.rootProject.file('local.properties').newDataInputStream())
                def sdkDir = properties.getProperty('signing.debug.key')
                storeFile file(sdkDir)
                storePassword "xxxstorepwd"
                keyAlias "xxx"
                keyPassword "xxxkeypwd"
            }
        }
        buildTypes {
            debug {
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                signingConfig signingConfigs.mybuild
            }
            release {
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                signingConfig signingConfigs.mybuild
                minifyEnabled false
            }
        }
    }
    

    dependencies

    { compile fileTree(include: ['*.jar'], dir: 'libs')
      //----- Support Libs
      compile 'com.android.support:appcompat-v7:23.3.0'
      compile "com.android.support:design:23.3.0"
      compile "com.android.support:recyclerview-v7:23.3.0"
      compile "com.android.support:cardview-v7:23.3.0"
    
      //----- EventBus
      compile 'org.greenrobot:eventbus:3.0.0'
    
      //----- Retrofit
      compile 'com.squareup.retrofit2:retrofit:2.0.0'
      compile "com.squareup.retrofit2:converter-gson:2.0.0"
      compile "com.squareup.retrofit2:adapter-rxjava:2.0.0"
      compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'
    
      //----- Butterknife
      compile "com.jakewharton:butterknife:7.0.1"
    
      //----- Loggin
      compile 'com.github.zhaokaiqiang.klog:library:1.3.0'
    
      //----- Picasso
      compile 'com.squareup.picasso:picasso:2.5.2'
      
     
       //glide
      compile 'com.github.bumptech.glide:glide:3.7.0'
      
      //db
      compile 'com.github.orhanobut:hawk:1.23'
    
      //json
      compile 'com.google.code.gson:gson:2.4'
      
      //----- Annotations
      compile 'org.glassfish:javax.annotation:10.0-b28'
    
      //----- Rating
      compile 'com.github.hotchemi:android-rate:0.5.6'
    
      //----- Testing
      androidTestCompile 'com.android.support:support-annotations:23.3.0'
      androidTestCompile 'com.android.support.test:runner:0.4.1'
      androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
      androidTestCompile 'org.hamcrest:hamcrest-integration:1.3'
    }
    

    相关文章

      网友评论

          本文标题:Android build.gradle

          本文链接:https://www.haomeiwen.com/subject/wtecsttx.html