给apk的密码

时间:2012-09-25 06:06:49

标签: android password-protection apk

我已经开发了一个应用程序,并制作了该应用程序的apk。现在我想给它密码,这样当有人试图安装应用程序时,它会要求输入密码。

2 个答案:

答案 0 :(得分:0)

你无法以这种方式保护apk文件,但是你可以在应用程序中添加一个“验证”安装的屏幕,这是他们应该输入密码的地方,应该只输入一次并记住这一点。

答案 1 :(得分:0)

你不能简单地这样做。您是否尝试许可您的软件?如果是,请创建一个带有一些登录凭据的Splash Screen或用户键入许可证密钥的EditText字段。确保启动画面具有正确的Intent Filter

    <activity
        android:name=".Splash"
        android:theme="@android:style/Theme.Black.NoTitleBar" 
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>