Load modules in a listview

This commit is contained in:
dvdandroid
2016-08-17 13:00:55 +02:00
parent 615bbcae74
commit 4692ed4b4a
10 changed files with 347 additions and 87 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.topjohnwu.magisk">
<manifest package="com.topjohnwu.magisk"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
@@ -10,11 +10,13 @@
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".ModulesActivity">
</activity>
</application>
</manifest>