└── app ├── src └── main │ ├── ic_launcher-playstore.png │ ├── res │ ├── font │ │ ├── raleway_light.ttf │ │ ├── raleway_medium.ttf │ │ └── raleway_semibold.ttf │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── values │ │ ├── ic_launcher_background.xml │ │ ├── dimens.xml │ │ ├── themes.xml │ │ ├── colors.xml │ │ └── styles.xml │ ├── menu │ │ ├── payment_activity_menu.xml │ │ └── menu.xml │ ├── anim │ │ └── shake.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── xml │ │ └── paths.xml │ ├── values-night │ │ ├── colors.xml │ │ └── themes.xml │ ├── drawable │ │ ├── dialog_background.xml │ │ ├── bottom_sheet_bg.xml │ │ ├── gradient_background_download_remainings.xml │ │ ├── button_background.xml │ │ ├── ic_launcher_foreground.xml │ │ └── ic_launcher_background.xml │ ├── layout │ │ ├── header.xml │ │ ├── dialog_layout.xml │ │ ├── code_input.xml │ │ ├── activity_transfer_license.xml │ │ ├── activity_about_payment.xml │ │ └── activity_main.xml │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-ja-rJP │ │ └── strings.xml │ ├── values-ko-rKR │ │ └── strings.xml │ ├── values-vi-rVN │ │ └── strings.xml │ ├── values-cs-rCZ │ │ └── strings.xml │ ├── values-ca-rES │ │ └── strings.xml │ ├── values-da-rDK │ │ └── strings.xml │ ├── values-de-rDE │ │ └── strings.xml │ ├── values-fi-rFI │ │ └── strings.xml │ ├── values-hu-rHU │ │ └── strings.xml │ ├── values-no-rNO │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-sq-rAL │ │ └── strings.xml │ ├── values-sv-rSE │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-hr-rHR │ │ └── strings.xml │ ├── values-sr-rSP │ │ └── strings.xml │ └── values-iw-rIL │ │ └── strings.xml │ ├── java │ └── com │ │ └── legs │ │ └── appsforaa │ │ ├── User.java │ │ ├── utils │ │ ├── Version.java │ │ └── UtilsLibrary.java │ │ ├── GitHubDownloader.java │ │ ├── AboutDialog.java │ │ ├── ContactDialog.java │ │ ├── Downloader.java │ │ ├── EnterProCode.java │ │ └── AboutPaymentActivity.kt │ └── AndroidManifest.xml └── build.gradle /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/font/raleway_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/font/raleway_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/raleway_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/font/raleway_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/raleway_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/font/raleway_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/AAAD/main/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #323133 4 | -------------------------------------------------------------------------------- /app/src/main/java/com/legs/appsforaa/User.java: -------------------------------------------------------------------------------- 1 | package com.legs.appsforaa; 2 | 3 | class User { 4 | 5 | 6 | public User(boolean b) { 7 | } 8 | 9 | 10 | boolean activated; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/res/menu/payment_activity_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/anim/shake.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/xml/paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #ffFFFFFF 5 | 6 | @android:color/background_light 7 | @android:color/background_dark 8 | 9 | #1E1E1E 10 | #2C2C2C 11 | #3C3C3C 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/dialog_background.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 12 | 13 | 16 | 17 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 0dp 8 | 9 | 14 | 5dp 15 | -------------------------------------------------------------------------------- /app/src/main/res/layout/header.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_sheet_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 13 | 15 | 16 | 19 | 20 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/gradient_background_download_remainings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | 11 | #008577 12 | #00574B 13 | #D81B60 14 | 15 | #ff000000 16 | 17 | @android:color/background_light 18 | @android:color/background_dark 19 | 20 | #ECECEC 21 | #E4E4E4 22 | #E8E8E8 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 13 | 14 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/layout/code_input.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 |