在官网下载最新安装包Download Android Studio & App Tools – Android Developers。
一般情况下官网下载会比较慢,得开VPN,故推荐使用网盘链接下载与安装,详见Android studio2022安装包下载及安装教程,可根据需要自行选择是否汉化。(注:强烈建议跟着教程配置,不然一旦后期出问题,重装软件会很麻烦)
下载链接GitHub – richard0305/Notes-master
apply plugin: ‘com.android.application‘
android {
useLibrary ‘org.apache.http.legacy‘
applicationId “net.micode.notes“
//noinspection ExpiredTargetSdkVersion
}
release {
proguardFiles getDefaultProguardFile(‘proguard–android.txt‘), ‘proguard–rules.txt‘
}
}
}
- 替换掉过时的代码
将这段代码注释掉
替换为以下代码
private void showNotification(int tickerId, String content) {
if (tickerId != R.string.ticker_success) {
pendingIntent = PendingIntent.getActivity(mContext, 0, new Intent(mContext,
NotesPreferenceActivity.class), 0);
} else {
pendingIntent = PendingIntent.getActivity(mContext, 0, new Intent(mContext,
}
Notification.Builder builder = new Notification.Builder(mContext)
.setContentTitle(mContext.getString(R.string.app_name))
.setContentIntent(pendingIntent)
.setWhen(System.currentTimeMillis())
Notification notification=builder.getNotification();
mNotifiManager.notify(GTASK_SYNC_NOTIFICATION_ID, notification);
}
- 运行项目
打开如下路径的apk文件,即为小米便签的安装包,复制并通过QQ发送到手机端,进行安装,即可在手机端运行小米便签
原文地址:https://blog.csdn.net/HINOTOR_/article/details/129895423
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_35866.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!