前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >android系统签名工具,android应用实现重启系统+签名「建议收藏」

android系统签名工具,android应用实现重启系统+签名「建议收藏」

作者头像
全栈程序员站长
发布2022-09-10 10:23:57
1K0
发布2022-09-10 10:23:57
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

1.在AndroidManifest.xml文件的manifest标签中加入一条android:sharedUserId=”android.uid.system”

package=”com.ipanel.update”

android:versionCode=”1″

android:versionName=”1.0″

android:sharedUserId=”android.uid.system” >

android:minSdkVersion=”9″

android:targetSdkVersion=”15″ />

android:icon=”@drawable/ic_launcher”

android:label=”@string/app_name”

android:theme=”@style/AppTheme” >

android:name=”.MainActivity”

android:label=”@string/title_activity_main” >

2.在MainActivity中,有以下2种方式实现:

/*Intent reboot = new Intent(Intent.ACTION_REBOOT);

reboot.putExtra(“nowait”, 1);

reboot.putExtra(“interval”, 1);

reboot.putExtra(“window”, 0);

sendBroadcast(reboot); */

PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE);

pManager.reboot(“”);

整个代码:

package com.demo.reboot;

import java.io.File;

import java.io.IOException;

import java.io.InputStream;

import android.app.Activity;

import android.app.AlertDialog;

import android.content.Context;

import android.content.DialogInterface;

import android.content.Intent;

import android.os.Bundle;

import android.os.PowerManager;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

public class MainActivity extends Activity {

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

Button rebootBtn = (Button) findViewById(R.id.button2);

rebootBtn.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

new AlertDialog.Builder(MainActivity.this)

.setTitle(“提示”)

.setMessage(“确认重启么?”)

.setPositiveButton(“重启”, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// 重启

/*String str = “重启”;

try {

str = runCmd(“reboot”, “/system/bin”);

} catch (IOException e) {

e.printStackTrace();

}*/

/*Intent reboot = new Intent(Intent.ACTION_REBOOT);

reboot.putExtra(“nowait”, 1);

reboot.putExtra(“interval”, 1);

reboot.putExtra(“window”, 0);

sendBroadcast(reboot); */

PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE);

pManager.reboot(“重启”);

System.out.println(“execute cmd–> reboot\n” + “重启”);

}

})

.setNegativeButton(“取消”, new DialogInterface.OnClickListener() {

@Override

public void onClick(DialogInterface dialog, int which) {

// 取消当前对话框

dialog.cancel();

}

}).show();

}

});

}

}

3.给apk签名

签名方法:

1>添加权限

在AndroidManifest.xml文件下添加android:sharedUserId=”android.uid.system” 。

2>在Eclipse中导出无签名的应用文件

在工程中:右键->Android Tools -> Export Unsigned Application Package导出应用

3>找出系统签名密钥

系统密钥为: platform.pk8和platform.x509.pem

路径: build\target\product\security

4>找出系统签名工具

工具为:signApk.jar

路径:/out/host/linux-x86/framework/ signApk.jar

5>开始签名

将第2、3、4步找到的无签名应用、platform.pk8、platform.x509.pem和signApk.jar放到同一文件夹下如F:\sign。

打开 dos 操作界面,定们到F:\sign,输入命令:

java -jar signapk.jar platform.x509.pem platform.pk8 **.apk ***.apk

(**.apk 为未签名应用 ***.apk 为签名之后应用)

注:之前在评论里有错误的说过这个签名工具是通用的,这里纠正下。编译导出的apk,要安装到那个版本的系统,就去那源码里找对应的签名工具,并不是各个版本通用

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/151991.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022年6月2,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档