Minor cleanups

This commit is contained in:
topjohnwu
2020-10-11 05:10:02 -07:00
parent 66cad101c0
commit 6092d7ca88
13 changed files with 44 additions and 54 deletions

View File

@@ -10,13 +10,20 @@
android:allowBackup="true"
tools:ignore="AllowBackup">
<activity android:name="a.a">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name=".FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
</provider>
</application>
</manifest>

View File

@@ -1,6 +0,0 @@
package a;
import com.topjohnwu.magisk.MainActivity;
public class a extends MainActivity {
}