├── .gitattributes ├── logo.ai ├── logo.png ├── NOTICE.txt ├── tools ├── signapk.jar ├── testkey.pk8 ├── sign.bat └── testkey.x509.pem ├── .gitignore ├── logo_transparent.png ├── assets ├── XposedBridge.jar ├── arm │ ├── busybox-xposed │ ├── app_process_xposed_sdk15 │ └── app_process_xposed_sdk16 ├── x86 │ ├── busybox-xposed │ ├── app_process_xposed_sdk15 │ └── app_process_xposed_sdk16 ├── Xposed-Disabler-Recovery.zip └── Xposed-Installer-Recovery.zip ├── lib └── AndroidHiddenAPI.jar ├── libs ├── android-support-v13.jar ├── libsuperuser-185868.jar └── StickyListHeaders-d7f6fc.jar ├── res ├── drawable-hdpi │ ├── ic_launcher.png │ ├── ic_menu_refresh.png │ └── ic_notification.png ├── drawable-ldpi │ ├── ic_launcher.png │ ├── ic_menu_refresh.png │ └── ic_notification.png ├── drawable-mdpi │ ├── ic_launcher.png │ ├── ic_menu_refresh.png │ └── ic_notification.png ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── ic_menu_refresh.png │ └── ic_notification.png ├── drawable-xxhdpi │ ├── ic_launcher.png │ ├── ic_menu_refresh.png │ └── ic_notification.png ├── anim │ ├── slide_in_left.xml │ ├── slide_in_right.xml │ ├── slide_out_right.xml │ └── slide_out_left.xml ├── menu │ ├── menu_download_details.xml │ ├── menu_logs.xml │ ├── context_menu_modules.xml │ └── menu_download.xml ├── drawable │ ├── background_card_light.xml │ ├── background_card_black.xml │ ├── background_card_dark.xml │ ├── background_card_normal_dark.xml │ ├── background_card_normal_light.xml │ ├── background_card_normal_black.xml │ ├── background_card_pressed_light.xml │ ├── background_card_pressed_dark.xml │ └── background_card_pressed_black.xml ├── values │ ├── attrs.xml │ ├── donottranslate.xml │ ├── colors.xml │ ├── styles.xml │ └── arrays.xml ├── layout │ ├── xposed_not_active_note.xml │ ├── list_sticky_header_download.xml │ ├── tab_logs.xml │ ├── tab_downloader.xml │ ├── dialog_install_warning.xml │ ├── download_moreinfo.xml │ ├── activity_welcome.xml │ ├── activity_download_details_not_found.xml │ ├── activity_download_details.xml │ ├── list_item_download.xml │ ├── download_details.xml │ ├── download_view.xml │ ├── list_item_welcome.xml │ ├── list_item_module.xml │ ├── list_item_version.xml │ ├── tab_about.xml │ └── tab_installer.xml ├── xml │ ├── module_prefs.xml │ └── prefs.xml ├── values-id │ └── strings.xml ├── values-ar │ └── strings.xml ├── values-gl │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-az │ └── strings.xml └── values-sv │ └── strings.xml ├── .settings └── org.eclipse.jdt.ui.prefs ├── src └── de │ └── robv │ └── android │ └── xposed │ └── installer │ ├── repo │ ├── Repository.java │ ├── ModuleVersion.java │ ├── Module.java │ ├── ReleaseType.java │ └── RepoParser.java │ ├── widget │ ├── ListPreferenceSummaryFix.java │ ├── IntegerListPreference.java │ └── DownloadView.java │ ├── DownloadReceiver.java │ ├── XposedBaseActivity.java │ ├── util │ ├── ThemeUtil.java │ ├── HashUtil.java │ ├── NavUtil.java │ ├── RootUtil.java │ ├── PrefixedSharedPreferences.java │ ├── AssetUtil.java │ └── NotificationUtil.java │ ├── DownloadDetailsSettingsFragment.java │ ├── XposedInstallerActivity.java │ ├── AboutFragment.java │ ├── PackageChangeReceiver.java │ ├── DownloadDetailsFragment.java │ ├── SettingsFragment.java │ ├── XposedDropdownNavActivity.java │ ├── XposedApp.java │ ├── WelcomeActivity.java │ ├── DownloadDetailsActivity.java │ └── LogsFragment.java ├── lint.xml ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project └── AndroidManifest.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | *.java text 3 | *.xml text 4 | *.ai binary 5 | -------------------------------------------------------------------------------- /logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/logo.ai -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/logo.png -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /tools/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/tools/signapk.jar -------------------------------------------------------------------------------- /tools/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/tools/testkey.pk8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | bin/ 3 | gen/ 4 | out/ 5 | *.apk 6 | *.iml 7 | proguard/ 8 | proguard_logs/ 9 | -------------------------------------------------------------------------------- /logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/logo_transparent.png -------------------------------------------------------------------------------- /assets/XposedBridge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/XposedBridge.jar -------------------------------------------------------------------------------- /assets/arm/busybox-xposed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/arm/busybox-xposed -------------------------------------------------------------------------------- /assets/x86/busybox-xposed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/x86/busybox-xposed -------------------------------------------------------------------------------- /lib/AndroidHiddenAPI.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/lib/AndroidHiddenAPI.jar -------------------------------------------------------------------------------- /libs/android-support-v13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/libs/android-support-v13.jar -------------------------------------------------------------------------------- /libs/libsuperuser-185868.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/libs/libsuperuser-185868.jar -------------------------------------------------------------------------------- /libs/StickyListHeaders-d7f6fc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/libs/StickyListHeaders-d7f6fc.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/Xposed-Disabler-Recovery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/Xposed-Disabler-Recovery.zip -------------------------------------------------------------------------------- /assets/arm/app_process_xposed_sdk15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/arm/app_process_xposed_sdk15 -------------------------------------------------------------------------------- /assets/arm/app_process_xposed_sdk16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/arm/app_process_xposed_sdk16 -------------------------------------------------------------------------------- /assets/x86/app_process_xposed_sdk15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/x86/app_process_xposed_sdk15 -------------------------------------------------------------------------------- /assets/x86/app_process_xposed_sdk16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/x86/app_process_xposed_sdk16 -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | formatter_profile=_Xposed 3 | formatter_settings_version=12 4 | -------------------------------------------------------------------------------- /assets/Xposed-Installer-Recovery.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/assets/Xposed-Installer-Recovery.zip -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-hdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-ldpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-ldpi/ic_notification.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-mdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-xhdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-xxhdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioHaZard1/XposedInstaller/HEAD/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/de/robv/android/xposed/installer/repo/Repository.java: -------------------------------------------------------------------------------- 1 | package de.robv.android.xposed.installer.repo; 2 | 3 | 4 | public class Repository { 5 | public String name; 6 | public String url; 7 | public boolean isPartial = false; 8 | public String partialUrl; 9 | public String version; 10 | 11 | /*package*/ Repository() {}; 12 | } 13 | -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/menu/menu_download_details.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/background_card_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | -------------------------------------------------------------------------------- /res/drawable/background_card_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/background_card_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/xposed_not_active_note.xml: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /res/xml/module_prefs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /src/de/robv/android/xposed/installer/repo/ModuleVersion.java: -------------------------------------------------------------------------------- 1 | package de.robv.android.xposed.installer.repo; 2 | 3 | 4 | public class ModuleVersion { 5 | public final Module module; 6 | public String name; 7 | public int code; 8 | public String downloadLink; 9 | public String md5sum; 10 | public String changelog; 11 | public boolean changelogIsHtml = false; 12 | public ReleaseType relType = ReleaseType.STABLE; 13 | public long uploaded = -1; 14 | 15 | /*package*/ ModuleVersion(Module module) { 16 | this.module = module; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | proguard.config=proguard-project.txt 12 | 13 | # Project target. 14 | target=android-15 15 | -------------------------------------------------------------------------------- /src/de/robv/android/xposed/installer/widget/ListPreferenceSummaryFix.java: -------------------------------------------------------------------------------- 1 | package de.robv.android.xposed.installer.widget; 2 | 3 | import android.content.Context; 4 | import android.preference.ListPreference; 5 | import android.util.AttributeSet; 6 | 7 | public class ListPreferenceSummaryFix extends ListPreference { 8 | public ListPreferenceSummaryFix(Context context) { 9 | super(context); 10 | } 11 | 12 | public ListPreferenceSummaryFix(Context context, AttributeSet attrs) { 13 | super(context, attrs); 14 | } 15 | 16 | @Override 17 | public void setValue(String value) { 18 | super.setValue(value); 19 | notifyChanged(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tools/sign.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | cd /d %~dp0 4 | cd .. 5 | 6 | echo Signing Xposed-Disabler-Recovery.zip 7 | java -jar tools\SignApk.jar -w tools\testkey.x509.pem tools\testkey.pk8 assets\Xposed-Disabler-Recovery.zip assets\Xposed-Disabler-Recovery.zip_signed 8 | move assets\Xposed-Disabler-Recovery.zip_signed assets\Xposed-Disabler-Recovery.zip 9 | 10 | echo Signing Xposed-Installer-Recovery.zip 11 | java -jar tools\SignApk.jar -w tools\testkey.x509.pem tools\testkey.pk8 assets\Xposed-Installer-Recovery.zip assets\Xposed-Installer-Recovery.zip_signed 12 | move assets\Xposed-Installer-Recovery.zip_signed assets\Xposed-Installer-Recovery.zip 13 | 14 | pause 15 | -------------------------------------------------------------------------------- /res/values/donottranslate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Xposed Installer 5 | app_process 6 | XposedBridge.jar 7 | --- 8 | https://github.com/rovo89 9 | http://forum.xda-developers.com/xposed 10 | StickyListHeaders\nlibsuperuser 11 | 12 | -------------------------------------------------------------------------------- /res/layout/list_sticky_header_download.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 15 | 16 | -------------------------------------------------------------------------------- /res/layout/tab_logs.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/de/robv/android/xposed/installer/DownloadReceiver.java: -------------------------------------------------------------------------------- 1 | package de.robv.android.xposed.installer; 2 | 3 | import android.app.DownloadManager; 4 | import android.content.BroadcastReceiver; 5 | import android.content.Context; 6 | import android.content.Intent; 7 | import de.robv.android.xposed.installer.util.DownloadsUtil; 8 | 9 | public class DownloadReceiver extends BroadcastReceiver { 10 | @Override 11 | public void onReceive(final Context context, final Intent intent) { 12 | String action = intent.getAction(); 13 | if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) { 14 | long downloadId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, 0); 15 | DownloadsUtil.triggerDownloadFinishedCallback(context, downloadId); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /res/menu/menu_logs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 13 | 17 | 21 | 22 | -------------------------------------------------------------------------------- /res/menu/context_menu_modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 13 | 16 | 19 | 22 | 23 | -------------------------------------------------------------------------------- /res/menu/menu_download.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 15 | 20 | 21 | -------------------------------------------------------------------------------- /res/layout/tab_downloader.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/de/robv/android/xposed/installer/repo/Module.java: -------------------------------------------------------------------------------- 1 | package de.robv.android.xposed.installer.repo; 2 | 3 | import java.util.ArrayList; 4 | import java.util.LinkedList; 5 | import java.util.List; 6 | 7 | import android.util.Pair; 8 | 9 | public class Module { 10 | public final Repository repository; 11 | public String packageName; 12 | public String name; 13 | public String summary; 14 | public String description; 15 | public boolean descriptionIsHtml = false; 16 | public String author; 17 | public String support; 18 | public final List> moreInfo = new LinkedList>(); 19 | public final List versions = new ArrayList(); 20 | public final List screenshots = new ArrayList(); 21 | public long created = -1; 22 | public long updated = -1; 23 | 24 | /*package*/ Module(Repository repository) { 25 | this.repository = repository; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /res/drawable/background_card_normal_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /res/drawable/background_card_normal_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/layout/dialog_install_warning.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 10 | 11 | 17 | 18 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/de/robv/android/xposed/installer/XposedBaseActivity.java: -------------------------------------------------------------------------------- 1 | package de.robv.android.xposed.installer; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import de.robv.android.xposed.installer.util.NavUtil; 6 | import de.robv.android.xposed.installer.util.ThemeUtil; 7 | 8 | public abstract class XposedBaseActivity extends Activity { 9 | public boolean leftActivityWithSlideAnim = false; 10 | public int mTheme = -1; 11 | 12 | @Override 13 | protected void onCreate(Bundle savedInstanceBundle) { 14 | super.onCreate(savedInstanceBundle); 15 | ThemeUtil.setTheme(this); 16 | } 17 | 18 | @Override 19 | protected void onResume() { 20 | super.onResume(); 21 | ThemeUtil.reloadTheme(this); 22 | 23 | if (leftActivityWithSlideAnim) 24 | NavUtil.setTransitionSlideLeave(this); 25 | leftActivityWithSlideAnim = false; 26 | } 27 | 28 | public void setLeftWithSlideAnim(boolean newValue) { 29 | this.leftActivityWithSlideAnim = newValue; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /res/drawable/background_card_normal_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /res/layout/download_moreinfo.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 17 | 18 | 23 | 24 | -------------------------------------------------------------------------------- /res/layout/activity_welcome.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 16 | 17 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /res/layout/activity_download_details_not_found.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 18 | 19 |