Commit Graph

1042 Commits

Author SHA1 Message Date
Rahul Patel
fd693bf9d8 Do not use new GSF & Vending versions 2022-07-24 23:36:34 +05:30
Rahul Patel
7509ae34e0 Merge branch 'onboarding-installer-checkbox-to-radiobuttons' into 'master'
Replace Checkboxes in Onboarding-Installer with Radiobuttons

See merge request AuroraOSS/AuroraStore!176
2022-07-24 17:59:36 +00:00
Rahul Patel
db186dea96 Merge branch 'onboarding-themes-checkbox-to-radiobuttons' into 'master'
Fix no-theme bug in Onboarding by using Radiobuttons

See merge request AuroraOSS/AuroraStore!178
2022-07-24 17:59:32 +00:00
nwuensche
9fef0624f3 Use arrow instead of less-than symbol 2022-05-28 10:39:44 +02:00
nwuensche
af93f6a604 Fix no-theme bug in Onboarding by using Radiobuttons
It was possible to de-select all Themes in the Onboarding as
Checkboxes where used. Now this is not possible anymore because we use
Radiobuttons
2022-05-28 10:24:38 +02:00
nwuensche
62333c7fa1 Replace Checkboxes in Onboarding-Installer with Radiobuttons 2022-05-28 09:26:56 +02:00
nwuensche
1c6757ca0e Enable Forward Button on Onboarding when going back
On the last Onboarding Screen, when going back the forward button
is disabled. This blocked you from finishing the Onboarding.
2022-05-28 08:43:02 +02:00
Ingo Brückl
f58d47d006 Show the correct title on the 5th onboarding page
It showed "Installer" instead of "Permissions".

This fixes gitlab issue #745.
2022-02-21 15:10:33 +01:00
Rahul Kumar Patel
e40b0f3a44 Fix FCs in case of missing urls 2022-02-19 22:54:51 +05:30
Rahul Kumar Patel
5c929e73ac Fix tab navigation when cutom tab is selected 2022-02-19 22:18:08 +05:30
Rahul Kumar Patel
25c0c8b32d Bump SDK to 32 + update gradle 2022-02-13 00:41:35 +05:30
Satvik Gaikwad
55b6c243cf Fix broken link
The Disclaimer link was giving 404 error.
2022-01-12 08:49:11 +00:00
Rahul Kumar Patel
26f5d4fd55 Get rid of CTT 2021-12-27 22:02:34 +05:30
Rahul Patel
7a8e0fdb6d Merge branch 'android12' into 'master'
Android 12 updates

See merge request AuroraOSS/AuroraStore!153
2021-12-18 17:34:27 +00:00
Rahul Patel
fbeb4f69eb Merge branch 'insecure-anonymous-button' into 'master'
Add Insecure Anonymous login button

See merge request AuroraOSS/AuroraStore!149
2021-12-18 17:30:46 +00:00
Rahul Patel
0552e9198f Merge branch 'am_installer' into 'master'
Am installer

See merge request AuroraOSS/AuroraStore!139
2021-12-18 17:12:31 +00:00
Oliver Scott
f83d26df58 Android 12 updates
* Updated gradle version and dependencies
* Bumped compileSdkVersion and targetSdkVersion to 31
* Added support for updates without user action
* Bumped versionCode and versionName

Changes required by API level 31:
 * Added explicit exported tags to activities and receivers
 * Added explicit IMMUTABLE|MUTABLE flags to PendingIntents
2021-11-12 09:46:00 -05:00
Oliver Scott
a550a4dddc Read system xml blacklist as default 2021-10-01 15:32:14 -04:00
Oliver Scott
6842893902 Add Insecure Anonymous login button 2021-09-30 19:06:57 -04:00
Oliver Scott
9a94e81bc0 PermissionsFragment: allow to go forward without granting permissions 2021-09-30 14:53:31 -04:00
Oliver Scott
2def492c1e Show Terms of Service prompt on launch 2021-09-30 14:53:31 -04:00
Rahul Kumar Patel
934a96fb11 Fix null download units
Resolves : #687, #674
2021-09-12 14:51:07 +05:30
darkkey
22ddce0571 Fix issue when install single apk 2021-07-22 21:49:38 +07:00
darkkey
1a02e4221e Add AM installer 2021-07-10 03:49:40 +07:00
Konstantin Tuev
bcdfb2b8f7 Revert "remove useless ThreadPoolExecutor in ServiceInstaller.kt" as it is needed for consistent and manageable ServiceConnection 2021-06-17 20:52:27 +03:00
Konstantin Tuev
014d3478f2 Fix issue with installing being called multiple times when a completed download is queue again, fix issues with UpdateService.kt stiopping when it might be needed (extended stopSelf timeout (5 secs) & made all calls to the service stack in a HashSet in case the service was not running when it was needed - AppDetailsActivity.kt & UpdatesFragment.kt), remove useless ThreadPoolExecutor in ServiceInstaller.kt, made the installing list in UpdateService.kt a set and made it concurrency-proof with a lock and dynamic thread creation when needed 2021-06-15 14:11:29 +03:00
Konstantin Tuev
b7ebb772dd Enable fetching of app download urls in the background (AppDetailsActivity.kt), force granting of all permissions in OnboardingActivity.kt by disabling finish until PermissionsFragment.kt notifies successfully granted permissions, handle currently installing apps better by saving them in multi-thread proof list in UpdateService.kt, add own notification group for UpdateService.kt and all required UpdateService.kt strings, add ability to pass file list to service installer for more advanced, non-system service installers, save downloaded files in getExternalFilesDir by default for more useful file list for more advanced, non-system service installers without compromising security because of Android's restrictions on the Android/data directory 2021-06-14 20:58:58 +03:00
Konstantin Tuev
4e111fa9f4 Fix AppInstaller spawning useless instances by preserving the original instance of every instantiated installer type (fixes wrongly started or concurrent installs/uninstalls), implement service based install for new downloads (integrated in the UpdateService.kt and the AppDetailsActivity.kt), prevent multiple calls for install by using ThreadPoolExecutor (applied only to ServiceInstaller.kt for now), fix timer issues in the UpdateService.kt 2021-06-09 23:09:27 +03:00
Konstantin Tuev
ca4f8d939e Updating apps is done in a separate foreground service so that AuroraStore doesn't need to be open for updating to work, every app downloaded is fetched with a unique random but saved and constant groupID based on appID and versionCode (prevents install issues with updated apps while keeping history), fix double install calls by finishing the implementation of the install queue (ServiceInstaller only for now), fix issues with ServiceInstaller (uninstall calls wrong bus event, service connection was not detached properly) and more + more to come 2021-06-08 22:22:25 +03:00
Rahul Patel
37c00973d1 Merge branch 'master' into 'master'
Set default version code values ​​for manual download

See merge request AuroraOSS/AuroraStore!124
2021-05-26 20:00:49 +00:00
Rahul Kumar Patel
f2b32d2fff Merge branch 'OJFord/AuroraStore-intent-install' into HEAD 2021-05-27 01:22:07 +05:30
Oliver Ford
86c08e9eab Add marker files to indicate download progress
1bfc8a14 adds the ability to download APKs via an intent, but since
intents are asynchronous, and the incomplete APK appears in its final
destination ~immediately while it downloads, the caller lacks a way to
identify that download has completed.

This commit adds two marker files in the form:

    sdcard/Aurora/Store/Downloads/com.pkg/.1234.download-in-progress
    sdcard/Aurora/Store/Downloads/com.pkg/.1234.download-complete

(where `com.pkg` and `1234` are package names and version codes
respectively)

in order that the caller can see:

  1. the version that is being downloaded;
  2. when the download has finished.
2021-05-27 01:19:49 +05:30
Rahul Kumar Patel
c530c223bf Use https for shared URLs
Resolves : https://gitlab.com/AuroraOSS/AuroraStore/-/issues/652
2021-05-27 00:08:48 +05:30
Rahul Kumar Patel
4ad1fd3fb5 Revert "Add promotional apps section on ForYou page"
This reverts commit 00e24e5125.
2021-05-27 00:04:13 +05:30
Rahul Kumar Patel
b61c8a38b4 Revert "Allow hiding promotional apps"
This reverts commit 2cb10c2fd4.
2021-05-27 00:03:59 +05:30
Vladislav
5bae8fa8f4 Set default version code values ​​for manual download 2021-05-26 16:20:21 +00:00
Rahul Kumar Patel
a8730d5cd1 Allow checking updates for disabled apps & fix loops
Resolves : #645, #587
2021-05-14 03:51:57 +05:30
Rahul Kumar Patel
b27a1f19d5 Fix directory heirarchy for internal storage downloads 2021-05-14 03:10:03 +05:30
Rahul Kumar Patel
9f1feb9ea1 Allow exporting current device config 2021-05-14 02:52:55 +05:30
Rahul Kumar Patel
2cb10c2fd4 Allow hiding promotional apps 2021-05-14 02:33:01 +05:30
Rahul Kumar Patel
00e24e5125 Add promotional apps section on ForYou page 2021-05-14 02:02:31 +05:30
Oliver Ford
1bfc8a14fb Add ability to download/install from intent 2021-04-20 20:19:37 +01:00
Rahul Kumar Patel
88d4742b24 Remove network connectivity before downloads 2021-04-12 03:03:10 +05:30
Rahul Kumar Patel
94e9ea25d4 Housekeeping [3/n] 2021-04-11 02:05:13 +05:30
Rahul Kumar Patel
60a974f96b Do not trigger redownload when exception is thrown while installation 2021-04-11 01:28:32 +05:30
0123456789
9a4ab1d97c Changed hardcoded strings to translatable 2021-04-11 01:28:24 +05:30
0123456789
6ccdf09551 Sort app lists alphabetially 2021-04-11 01:28:06 +05:30
Rahul Kumar Patel
e2141aac72 Skip self update for nightlies 2021-04-07 00:40:41 +05:30
Rahul Kumar Patel
660268587e Do not allow users to install bundled apps via native installer 2021-04-06 22:32:33 +05:30
Rahul Kumar Patel
0228cc1a3c Fix missing downloads entry 2021-04-06 22:13:17 +05:30