2019-03-30 Android Gradle manifestPlaceholders自定义变量取值

前言

最近写了一个坑爹的方便其他方集成的微信,支付宝分享SDK,其中的appid等参数,本人使用的配置化,就遇到了在Gradle manifestPlaceholders自定义变量取值问题

一.声明变量值

申明变量的原理

看过源码,其实就是一个HashMap的对象,我们在build.gradle中写入,然后映射到AndroidMainfest.xml中,HashMap对象放置在activityInfo.metaData中,我们可以通过activityInfo.metaData.keyset()查看所有设置的值

首先了解,在build.gradle中如何添加变量可以写在如下的位置:

第一种:

defaultConfig {

        applicationId "xxx.xxxxxx.xxxxxx"

        minSdkVersion 20

        targetSdkVersion 18

        versionCode 1

        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        manifestPlaceholders = [

                "WEATCH_APPID": "--------------",

        ]

    }

    buildTypes {

        debug {

            signingConfig signingConfigs.debug

            minifyEnabled false

            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'

            manifestPlaceholders = [

                    "WEATCH_APPID": "--------------",

            ]

        }

        release {

            minifyEnabled false

            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

        }

    }

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

第二种:

compileSdkVersion 18

    buildToolsVersion '27.0.2'

    defaultConfig {

        applicationId "xxx.xxxxx.xxxxx"

        minSdkVersion 20

        targetSdkVersion 18

        versionCode 1

        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        manifestPlaceholders = [

                "WEATCH_APPID": "dddddddd",

        ]

    }

1

2

3

4

5

6

7

8

9

10

11

12

13

第三种:

  compileSdkVersion 18

    buildToolsVersion '27.0.2'

    defaultConfig {

        applicationId "xxx.xxxxxx.xxxxxxx"

        minSdkVersion 20

        targetSdkVersion 18

        versionCode 1

        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

        productFlavors {

            google {

                manifestPlaceholders.put("UMENG_CHANNEL","google")

            }

            baidu {

                manifestPlaceholders.put("UMENG_CHANNEL","baidu")

            }

        }

    }

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

二.AndroidMainfest.xml中使用

第一种:直接使用

比如极光receiver

<receiver

            android:name=".jpush.MyReceiver"

            android:enabled="true">

            <intent-filter>

                <!--Required 用户注册SDK的intent-->

                <action android:name="cn.jpush.android.intent.REGISTRATION" />

                <!--Required 用户接收SDK消息的intent-->

                <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" />

                <!--Required 用户接收SDK通知栏信息的intent-->

                <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" />

                <!--Required 用户打开自定义通知栏的intent-->

                <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" />

                <!-- 接收网络变化 连接/断开 since 1.6.3 -->

                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />

                <!--<action android:name="cn.jpush.android.intent.CONNECTION" />-->

                <category android:name="${JPUSH_PKGNAME}" />

            </intent-filter>

        </receiver>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

比如微信支付

        <!-- 支付回调页面 -->

        <activity

            android:name=".wxapi.WXPayEntryActivity"

            android:exported="true"

            android:launchMode="singleTop">

            <intent-filter>

                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />

                <data android:scheme="${WEATCH_APPID}" />

            </intent-filter>

        </activity>

1

2

3

4

5

6

7

8

9

10

11

三.在Java类中获取[在service,receiver,Activity,Application中获取值]

原理:通过androidMainfest.xml把值反射到对应类标签,设置value的key值,在java类中通过key取值得到value

第一种:Activity类中获取build.gradle申明变量

AndroidMainfest.xml中代码

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="xxx.xxxx.xxxxx">

    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

    <application

        android:allowBackup="true"

        android:icon="@mipmap/ic_launcher"

        android:label="@string/app_name"

        android:supportsRtl="true"

        android:theme="@style/AppTheme">

        <activity android:name=".PayTestActivity">

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

          <meta-data android:name="test" android:value="${WEATCH_APPID}"/>//这一句起到至关重要作用

        </activity>

    </application>

</manifest>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

Activity中代码

import android.app.Activity;

import android.content.pm.ActivityInfo;

import android.content.pm.PackageManager;

import android.os.Bundle;

import android.view.View;

import android.widget.Button;

import com.reach.doooly.utils.StringUtlis;

import com.reachdoooly.pay.utils.ReachLogs;

/**

* Created by Albert on 2018/5/22.

*/

public class PayTestActivity extends Activity {

    private Button ali_pay;//阿里支付

    private Button weachat_pay;//微信支付

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate ( savedInstanceState );

        setContentView ( R.layout.pay_test );

        ActivityInfo activityInfo = null;

        String value ="";

        try {

            activityInfo = getPackageManager().getActivityInfo(getComponentName(), PackageManager.GET_META_DATA);

            value=activityInfo.metaData.getString("test");

        } catch (PackageManager.NameNotFoundException e) {

        }

        if(!StringUtlis.isEmpty ( value )){

            ReachLogs.e ("fuqinming","appId:"+value);

        }

        weachat_pay = (Button) findViewById ( R.id.wechat_pay );

        weachat_pay.setOnClickListener ( new View.OnClickListener () {

            @Override

            public void onClick(View v) {

              //new NewClass().createNewPay(PayTestActivity.this);

              // Toast.makeText ( PayTestActivity.this, PayUtils.getAppPackageName ( PayTestActivity.this ), Toast.LENGTH_SHORT ).show ();

            }

        } );

    }

}

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

第二种:Application类中获取build.gradle申明变量

AndroidMainfest.xml中代码

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="xxx.xxxx.xxxxx">

    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

    <application

        android:allowBackup="true"

        android:icon="@mipmap/ic_launcher"

        android:label="@string/app_name"

        android:supportsRtl="true"

        android:theme="@style/AppTheme">

        <activity android:name=".PayTestActivity">

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

        <meta-data android:name="test" android:value="${WEATCH_APPID}"/>//这一句起到至关重要作用

    </application>

</manifest>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

在Application中代码

    private void getWeatchAppID(){

          String value ="";

          try {       

              ApplicationInfo applicationInfo=getPackageManager().getApplicationInfo(getPackageName(),PackageManager.GET_META_DATA);

              value=applicationInfo.metaData.getString("test");

          } catch(Exception e) {

            value="";

          }

      }

1

2

3

4

5

6

7

8

9

第三种:在SERVICE,RECEIVER中获取

这两种基本上差不多就不分开写了,就只写一种,另外一种赵淼画瓢即可。

在AndroidMainfest.xml中代码

<receiver

            android:name=".jpush.MyReceiver"

            android:enabled="true">

            <intent-filter>

                <!--Required 用户注册SDK的intent-->

                <action android:name="cn.jpush.android.intent.REGISTRATION" />

                <!--Required 用户接收SDK消息的intent-->

                <action android:name="cn.jpush.android.intent.MESSAGE_RECEIVED" />

                <!--Required 用户接收SDK通知栏信息的intent-->

                <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED" />

                <!--Required 用户打开自定义通知栏的intent-->

                <action android:name="cn.jpush.android.intent.NOTIFICATION_OPENED" />

                <!-- 接收网络变化 连接/断开 since 1.6.3 -->

                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />

                <!--<action android:name="cn.jpush.android.intent.CONNECTION" />-->

                <category android:name="${JPUSH_PKGNAME}" />

            </intent-filter>

            <meta-data android:name="test" android:value="${WEATCH_APPID}"/>//这一句起到至关重要作用

        </receiver>

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

在receiver类中代码

    private void getWeatchAppID(){

          String value ="";

          try {       

              ApplicationInfo applicationInfo=activity.getPackageManager().getServiceInfo(ComponentName,PackageManager.GET_META_DATA);

              ApplicationInfo applicationInfo=activity.getPackageManager().getReceiverInfo(ComponentName,PackageManager.GET_META_DATA);

              //只有这里不同,亲们注意哈getReceiverInfo,getServiceInfo

              value=applicationInfo.metaData.getString("test");

          } catch(Exception e) {

            value="";

          }

      }

1

2

3

4

5

6

7

8

9

10

11

4.特别需要注意

因为在我的项目中,是在core包中写入appID与appSercert等信息,就需要特别注意,我的代码是在core包中有一个父Activity,如何在父activity中获取appid,需要特别注意

import android.app.Activity;

import android.content.pm.ApplicationInfo;

import android.content.pm.PackageManager;

import android.widget.Toast;

import com.tencent.mm.opensdk.modelbase.BaseReq;

import com.tencent.mm.opensdk.modelbase.BaseResp;

import com.tencent.mm.opensdk.modelpay.PayReq;

import com.tencent.mm.opensdk.openapi.IWXAPI;

import com.tencent.mm.opensdk.openapi.IWXAPIEventHandler;

import com.tencent.mm.opensdk.openapi.WXAPIFactory;

/**

* 微信支付base类

*/

public class WeatchPayBaseActivity extends Activity implements IWXAPIEventHandler {

    private IWXAPI api;

    private PayReq payReq;//微信支付

    public void initWXAPI(Activity context) {

        String APP_ID ="";

        ReachLogs.e ("fuqinming","packagename:"+getPackageName ());

        -----第一种写法----

        try {

            ApplicationInfo activityInfo =this.getPackageManager().getApplicationInfo(this.getPackageName (), PackageManager.GET_META_DATA);

            APP_ID=activityInfo.metaData.getString("WEATCG_APPID");

        } catch (Exception e) {

        }

        if(null == APP_ID || "".equals ( APP_ID.trim () ) || "null".equals ( APP_ID.trim () )){

            ReachLogs.e ("fuqinming","appId:");

        }else{

            ReachLogs.e ("fuqinming","appId:"+APP_ID);

        }

        ----第二种写法----

        try {

            ApplicationInfo appInfo = getPackageManager ().getApplicationInfo ( getPackageName (),

                            PackageManager.GET_META_DATA );

            APP_ID=appInfo.metaData.getString("WEATCH_APPID");

        }catch (Exception e){

        }

        ReachLogs.e ("fuqinming","APP_ID:"+APP_ID);

        payReq = new PayReq ();

        if (null == APP_ID || "".equals ( APP_ID.trim () ) || "null".equals ( APP_ID.trim () )) {

            throw new NullPointerException ();

        }

        // 初始化分享

        api = WXAPIFactory.createWXAPI ( context, APP_ID, true );

        api.handleIntent ( context.getIntent (), this );

        api.registerApp ( APP_ID );

    }

    @Override

    public void onReq(BaseReq baseReq) {

    }

    /***

    * 微信支付[NATIVIE TO HTML]

    *

    * @param weachPayVo

    * @add 2017-10-10

    */

    public void wechatPay(WeachPayBeanVo weachPayVo) {

        if(payReq==null){

            throw new NullPointerException ("payReq The object is not set");

        }

        if (payReq != null && weachPayVo != null && !WeacthConsts.isEmpty(weachPayVo.getAppid()) && !WeacthConsts.isEmpty(weachPayVo.getNoncestr())

                && !WeacthConsts.isEmpty(weachPayVo.getPackageValue()) && !WeacthConsts.isEmpty(weachPayVo.getPartnerid())

                && !WeacthConsts.isEmpty(weachPayVo.getPrepayid()) && !WeacthConsts.isEmpty(weachPayVo.getSign())

                && !WeacthConsts.isEmpty(weachPayVo.getTimestamp())) {

            payReq.appId = weachPayVo.getAppid();

            payReq.partnerId = weachPayVo.getPartnerid();// 微信支付分配的商户号

            payReq.prepayId = weachPayVo.getPrepayid();// 微信返回的支付交易会话ID

            payReq.packageValue = weachPayVo.getPackageValue();// 扩展字段占时填固定

            payReq.nonceStr = weachPayVo.getNoncestr();// 随机字符串

            payReq.timeStamp = weachPayVo.getTimestamp();// 时间戳

            payReq.sign = weachPayVo.getSign();// 签名

            api.sendReq(payReq);

        } else {

            Toast.makeText (this,getString(R.string.error_order_msg),Toast.LENGTH_SHORT);

        }

    }

    // 第三方应用发送到微信的请求处理后的响应结果,会回调到该方法

    public void onResp(BaseResp resp) {

    }

}

---------------------

作者:CherryChen88

来源:CSDN

原文:https://blog.csdn.net/ONLYMETAGAIN/article/details/80497789

版权声明:本文为博主原创文章,转载请附上博文链接!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容