-1
我只需要一個父過濾器,這樣孩子就不能卸載我的應用程序,直到父母授予權限(如密碼)爲止。有可能的 ?如何防止我的應用程序在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>
我開發的應用程序爲Android平板4.1果凍豆 –
這是非常有趣的。答案仍然有效。 – Siddharth
給我任何例子請 –