android 多渠道打包,build.gradle文件配置、manifest文件配置

build.gradle

apply plugin: 'com.android.application'

android {
    signingConfigs {
        SP {
            keyAlias 'ywyysq'
            keyPassword '123456'
            storeFile file('/Users/apple/AndroidStudioProjects/APPKEY/ywyysq.jks')
            storePassword '123456'
        }
    }
    compileSdkVersion 22
    buildToolsVersion '23.0.2'
    defaultConfig {
        applicationId "com.jshy.yyyysq"
        minSdkVersion 14
        targetSdkVersion 22
        versionCode 2
        versionName "2.0"
        multiDexEnabled true //dex突破65535限制
    }
    buildTypes {

        all {
            buildConfigField "String", "GIT_REVISION", "\"${getGitRevision()}\""
            manifestPlaceholders = [UMENG_APPKEY: "56e6164e67e58e9a23000439",]
        }

        debug {
            applicationIdSuffix ".debug"
            versionNameSuffix "-Debug"
            resValue "string", "app_name", "调试1.0"
        }

        release {
            minifyEnabled true //译:使变小enabled。   即启用混淆器
            shrinkResources true
            zipAlignEnabled false //设置为false 为了不产生unaligned的apk  //混淆后的zip优化,默认为true,可不写。当不显示配置为true时,不会生成unaligned.apk
            signingConfig signingConfigs.SP
            resValue "string", "app_name", "AU影院"
            /*if (project.hasProperty("keyPath") && project.hasProperty("keyPass") && project.hasProperty("keyAlias")) {
                signingConfigs.release.storeFile file(keyPath)
                signingConfigs.release.keyAlias = keyAlias
                signingConfigs.release.storePassword = keyPass
                signingConfigs.release.keyPassword = keyPass
            }*/
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            applicationVariants.all { variant ->
                variant.outputs.each { output ->
                    def outputFile = output.outputFile
                    if (outputFile != null && outputFile.name.endsWith('.apk')) {
                        def fileName = "${variant.productFlavors[0].name}_${getDate()}_${getGitRevision()}.apk"
                        output.outputFile = new File(outputFile.parent, fileName)
                    }
                }
            }
        }
    }

    // 多渠道打包
    productFlavors {

        jshy_video {
            manifestPlaceholders = [
                    JSPAY_APP_KEY: "ekiw8kkjq38vqgc",
                    //LINE_ENSURE: "***************"
                    CHANNEL_KEY  : "59f99ab6901e151edadf8792a643f7a3",
                    //LINE_ENSURE: "********************************"
                    UMENG_VALUE  : "sp0100"
                    //LINE_ENSURE: "******"
            ]
        }

        xinlianAZ01 {
            manifestPlaceholders = [
                    JSPAY_APP_KEY: "ekiw8kkjq38vqgc",
                    //LINE_ENSURE: "***************"
                    CHANNEL_KEY  : "59f99ab6901e151edadf8792a643f7a3",
                    //LINE_ENSURE: "********************************"
                    UMENG_VALUE  : "sp0422"
                    //LINE_ENSURE: "******"
            ]
        }

        lianmeng69 {
            manifestPlaceholders = [
                    JSPAY_APP_KEY: "o0wiv04i20g8mwf",
                    //LINE_ENSURE: "***************"
                    CHANNEL_KEY  : "c956d0e9766579062c5c63dd9525d2d0",
                    //LINE_ENSURE: "********************************"
                    UMENG_VALUE  : "sp0301"
                    //LINE_ENSURE: "******"
            ]
        }
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
}

def getDate() {
    def date = new Date()
    def formattedDate = date.format('yyyyMMdd-HHmmss')
    return formattedDate
}

def getGitRevision() {
    return "git rev-parse --short HEAD".execute().text.trim()
}

def replace(filePath, oldStr, newStr) {
    def f = file(filePath)
    String content = f.getText()
    content = content.replaceAll(oldStr, newStr)
    f.write(content)
}


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile files('libs/jsoup-1.8.1.jar')
    compile files('libs/TencentLocationSDK_v4.0_r139747.jar')
    compile files('libs/JshyPay_zw_asset_14.1.jar')
    compile files('libs/mmlog.jar')
    compile files('libs/universal-image-loader-1.9.5.jar')
    compile files('libs/pay_plugin.jar')
}

AndroidManifest.xml

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.jshy.yyyysq"
          android:versionCode="1"
          android:versionName="1.0">

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18"/>
    <!--所有需要权限-->
    <!--application-->
    <application
        android:name=".activity.MyApplication"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:theme="@style/MyAppTheme">
        <!--====================KEY=========================-->
        <!--渠道号-->
        <meta-data
            android:name="JSPAY_APP_KEY"
            android:value="${JSPAY_APP_KEY}"/>

        <!--渠道号对应码-->
        <meta-data
            android:name="CHANNEL_KEY"
            android:value="${CHANNEL_KEY}"/>

        <!--友盟渠道对应值-->
        <meta-data
            android:name="UMENG_VALUE"
            android:value="${UMENG_VALUE}"/>

        <!--友盟渠道key-->
        <meta-data
            android:name="UMENG_APPKEY"
            android:value="56e6164e67e58e9a23000439"/>
        <!--====================KEY=========================-->

    </application>

</manifest>

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值