create ShareUtil
This commit is contained in:
parent
8f58c485c8
commit
d14939c893
20
common/src/main/java/com/yunbao/common/utils/ShareUtil.java
Normal file
20
common/src/main/java/com/yunbao/common/utils/ShareUtil.java
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
package com.yunbao.common.utils;
|
||||||
|
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分享工具
|
||||||
|
*/
|
||||||
|
public class ShareUtil {
|
||||||
|
public static void share(String content) {
|
||||||
|
share(content, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void share(Bitmap bitmap) {
|
||||||
|
share(null,bitmap);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void share(String content, Bitmap bitmap) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -27,6 +27,6 @@ ext {
|
|||||||
// true表示谷歌支付 false
|
// true表示谷歌支付 false
|
||||||
isGooglePlay : false,
|
isGooglePlay : false,
|
||||||
//是否上报异常日志
|
//是否上报异常日志
|
||||||
isUploadLog : true
|
isUploadLog : false
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user