1 Star 11 Fork 6

哇噻/AndroidStressTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gradle.properties 802 Bytes
一键复制 编辑 原始数据 按行查看 历史
aystshen 提交于 2019-09-19 14:00 . Update android support version
package com.ayst.androidx.util;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import java.lang.reflect.Method;
public class AppUtil {
private static final String KEY_IS_FIRST = "is_first_run";
public static boolean isFirstRun(Context context) {
boolean isFirst = SPUtils.get(context).getData(KEY_IS_FIRST, true);
if (isFirst) {
SPUtils.get(context).saveData(KEY_IS_FIRST, false);
}
return true;
}
public static void startService(Context context, Intent intent) {
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startForegroundService(intent);
} else {
android.useAndroidX=true
android.enableJetifier=true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rogmail/AndroidStressTest.git
git@gitee.com:rogmail/AndroidStressTest.git
rogmail
AndroidStressTest
AndroidStressTest
master

搜索帮助