码迷,mamicode.com
首页 > 移动开发 > 详细

android gradle 多渠道打包

时间:2014-09-30 17:43:59      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   os   ar   java   

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:0.7.+‘
    }
}
apply plugin: ‘android‘
 
repositories {
    mavenCentral()
}
 
dependencies {
    compile fileTree(dir: ‘libs‘, include: ‘*.jar‘)
}
 
android {
    compileSdkVersion 19
    buildToolsVersion ‘19.0.0‘
 
    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 19
    }
 
    sourceSets {
        main {
            manifest.srcFile ‘AndroidManifest.xml‘
            java.srcDirs = [‘src‘]
            resources.srcDirs = [‘src‘]
            aidl.srcDirs = [‘src‘]
            renderscript.srcDirs = [‘src‘]
            res.srcDirs = [‘res‘]
            assets.srcDirs = [‘assets‘]
        }
 
        threesixo.setRoot(‘build-types/360‘)
        anzhi.setRoot(‘build-types/AnzhiMarket‘)
        baidu.setRoot(‘build-types/Baidu‘)
        hiapk.setRoot(‘build-types/HiApk‘)
        jifeng.setRoot(‘build-types/JiFeng‘)
        playstore.setRoot(‘build-types/PlayStore‘)
        tencent.setRoot(‘build-types/Tencent‘)
        wandoujia.setRoot(‘build-types/WanDouJia‘)
        xiaomi.setRoot(‘build-types/XiaoMi‘)
 
        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot(‘tests‘)
 
        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot(‘build-types/debug‘)
        release.setRoot(‘build-types/release‘)
    }
 
    signingConfigs {
        MyConfig{
            storeFile file("E:\\my.keystore")
            storePassword "******"
            keyAlias "myapp"
            keyPassword "******"
        }
    }
 
    buildTypes{
        release {
            signingConfig  signingConfigs.MyConfig
        }
    }
 
    productFlavors {
        threesixo {}
        anzhi {}
        baidu {}
        hiapk {}
        jifeng{}
        playstore {}
        tencent{}
        wandoujia{}
        xiaomi{}
    }
}

比如:build-types\360\AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mypackage">
 
    <application >
        <meta-data android:name="UMENG_CHANNEL" android:value="GooglePlay" />
    </application>
</manifest>

 

android gradle 多渠道打包

标签:android   style   blog   http   color   io   os   ar   java   

原文地址:http://www.cnblogs.com/xiaorenwu702/p/4002051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!