1.设置程序主Activity(更改程序的入口地址)
打开android project的AndroidManifest.xm或者喜欢反编译的话打开apk里面的AndroidManifest.xml文件,一开始便是指定:<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.i3nu.sprofile" //package名、包名
android:versionCode="1" //版本码
android:versionName="1.0"> //版本名
<application android:icon="@drawable/icon" android:label="@string/app_name"> //指定项目程序的图标、名称
<activity android:name=".SProfileActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" /> //此处表示该Activity是主程序
<category android:name="android.intent.category.LAUNCHER" /> //此处表示该Activity是入口
</intent-filter>
</activity>