如何防止在Android上卸载我的应用程序

时间:2013-06-19 06:43:25

标签: android

我只需要一个父过滤器,这样孩子就无法卸载我的应用程序,直到父提供权限(如密码)。有可能吗?

可以阻止应用程序卸载吗?

以下是我的清单。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="de.impressive.artworx.tutorials.installedapps"
  android:versionCode="1"
  android:versionName="1.0">
  <uses-sdk android:minSdkVersion="8" />

  <application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".ListInstalledApps"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

</application>
</manifest> 

1 个答案:

答案 0 :(得分:1)

Android就像Windows,Linux和Mac一样。操作系统具有允许/禁止其应用程序使用的功能。您可能需要在监狱破坏的手机上编写本机应用程序,以便在操作系统上实现这种控制。