1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
| //内部顶层基本设置 buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.14.+' } } // 依赖仓库 repositories { maven { url "https://jitpack.io" } mavenCentral() jcenter() maven { url 'https://maven.fabric.io/public' } }
apply plugin: 'com.android.application' //android 标签下的设置会在build的时候以hardcode形式生成,所以内部方法只在build的时候调用一次. android { compileSdkVersion 21 buildToolsVersion "21.1.0" defaultConfig { minSdkVersion 9 targetSdkVersion 21 versionCode appVersionCode versionName "1.1.1" multiDexEnabled false manifestPlaceholders = [ UMENG_CHANNEL_VALUE:"default_channel" ] buildConfigField "boolean", "ISDEBUG", "true" } //拓展最大堆内存 dexOptions { javaMaxHeapSize "4g" } //跳过错误 lintOptions { disable 'InvalidPackage' checkReleaseBuilds false // Or, if you prefer, you can continue to check for errors in release builds, // but continue the build even when errors are found: abortOnError false } //签名 signingConfigs { debug { //storeFile file("../myKey/debug.keystore") } //你自己的keystore信息 release { //storeFile file("../myKey/appKey.keystore") // `../`开始表示当前包目录下 //storePassword "" //keyAlias "sam" //keyPassword "" } } buildTypes { debug { signingConfig signingConfigs.debug buildConfigField "boolean", "ISDEBUG", "true" manifestPlaceholders = [facebook_id_key: "1715761408682261", facebook_id_key_string: "@string/facebook_app_id_test"] } release { buildConfigField "boolean", "ISDEBUG", "true" signingConfig signingConfigs.release manifestPlaceholders = [facebook_id_key: "1715761408682261", facebook_id_key_string: "@string/facebook_app_id_test"] minifyEnabled true zipAlignEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } //渠道Flavors,我这里写了一些常用的,自己改 productFlavors { //GooglePlay{} //NDuo{} xiaomi {} umeng {} } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } productFlavors.all { flavor -> flavor.manifestPlaceholders = [ UMENG_CHANNEL_VALUE:name ] } applicationVariants.all { variant -> variant.outputs.each { output -> def outputFile = output.outputFile if (outputFile != null && outputFile.name.endsWith('.apk')) { def fileName = outputFile.name.replace(".apk", "-v${defaultConfig.versionName}(${defaultConfig.versionCode}).apk") //def fileName = outputFile.name.replace("app","you app name").replace(".apk","-v${defaultConfig.versionName}(${defaultConfig.versionCode}).apk"); // def apkName = "you app name" + android.defaultConfig.versionName; //apkName += "_" + variant.buildType.name + "_" + android.defaultConfig.versionCode+".apk" //output.outputFile = file("$project.buildDir/apk/" + apkName) output.outputFile = new File("$project.buildDir/apk/", fileName) } } } // 相同包冲突 configurations.all { resolutionStrategy { force 'com.android.support:design:23.4.0' force 'com.android.support:support-v4:23.4.0' force 'com.android.support:appcompat-v7:23.4.0' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:21.+' compile 'com.android.support:support-v4:21.+' compile 'com.android.support:cardview-v7:21.+' compile 'com.android.support:recyclerview-v7:21.+' }
//下面的选一个就好.
//versionnumberautoincrement — mainifest import java.util.regex.Pattern
task('increaseVersionCode') << { def manifestFile = file("src/main/AndroidManifest.xml") def pattern = Pattern.compile("versionCode=\"(\\d+)\"") def manifestText = manifestFile.getText() def matcher = pattern.matcher(manifestText) matcher.find() def versionCode = Integer.parseInt(matcher.group(1)) def manifestContent = matcher.replaceAll("versionCode=\"" + ++versionCode + "\"") manifestFile.write(manifestContent) } tasks.whenTaskAdded { task -> if (task.name == 'generateReleaseBuildConfig') { task.dependsOn 'increaseVersionCode' } }
//versionnumberautoincrement — gradle import java.util.regex.Pattern task('increaseVersionCode') << { def manifestFile = file("build.gradle") def manifestText = manifestFile.getText() def matcher = Pattern.compile("versionCode (\\d+)").matcher(manifestText) matcher.find() def versionCode = Integer.parseInt(matcher.group(1)) def manifestContent = matcher.replaceAll("versionCode " + ++versionCode) manifestFile.write(manifestContent) } tasks.whenTaskAdded { task -> if (task.name == 'generateReleaseBuildConfig') { task.dependsOn 'increaseVersionCode' } }
|