Skip to content

Commit 1a7c7bf

Browse files
[MISC] Merge branch dev. V.2.0
2 parents b072e27 + 1607b20 commit 1a7c7bf

111 files changed

Lines changed: 4331 additions & 3771 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 222 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
2+
# Created by https://www.gitignore.io/api/linux,macos,windows,android,firebase,androidstudio
3+
# Edit at https://www.gitignore.io/?templates=linux,macos,windows,android,firebase,androidstudio
4+
5+
### Android ###
16
# Built application files
2-
/*/build/
37
*.apk
48
*.ap_
9+
*.aab
510

611
# Files for the ART/Dalvik VM
712
*.dex
@@ -13,6 +18,7 @@
1318
bin/
1419
gen/
1520
out/
21+
release/
1622

1723
# Gradle files
1824
.gradle/
@@ -33,32 +39,237 @@ proguard/
3339
# Android Studio captures folder
3440
captures/
3541

36-
# User-specific configurations
37-
.idea/
42+
# IntelliJ
3843
*.iml
44+
.idea/workspace.xml
45+
.idea/tasks.xml
46+
.idea/gradle.xml
47+
.idea/assetWizardSettings.xml
48+
.idea/dictionaries
49+
.idea/libraries
50+
# Android Studio 3 in .gitignore file.
51+
.idea/caches
52+
.idea/modules.xml
53+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
54+
.idea/navEditor.xml
3955

4056
# Keystore files
41-
*.jks
57+
# Uncomment the following lines if you do not want to check your keystore files in.
58+
#*.jks
59+
#*.keystore
4260

4361
# External native build folder generated in Android Studio 2.2 and later
4462
.externalNativeBuild
4563

4664
# Google Services (e.g. APIs or Firebase)
47-
google-services.json
48-
49-
# Release
50-
app/release
65+
# google-services.json
5166

5267
# Freeline
5368
freeline.py
5469
freeline/
5570
freeline_project_description.json
5671

57-
# OS generated files
72+
# fastlane
73+
fastlane/report.xml
74+
fastlane/Preview.html
75+
fastlane/screenshots
76+
fastlane/test_output
77+
fastlane/readme.md
78+
79+
# Version control
80+
vcs.xml
81+
82+
# lint
83+
lint/intermediates/
84+
lint/generated/
85+
lint/outputs/
86+
lint/tmp/
87+
# lint/reports/
88+
89+
### Android Patch ###
90+
gen-external-apklibs
91+
output.json
92+
93+
### Firebase ###
94+
.idea
95+
**/node_modules/*
96+
**/.firebaserc
97+
98+
### Firebase Patch ###
99+
.runtimeconfig.json
100+
.firebase/
101+
102+
### Linux ###
103+
*~
104+
105+
# temporary files which can be created if a process still has a handle open of a deleted file
106+
.fuse_hidden*
107+
108+
# KDE directory preferences
109+
.directory
110+
111+
# Linux trash folder which might appear on any partition or disk
112+
.Trash-*
113+
114+
# .nfs files are created when an open file is removed but is still being accessed
115+
.nfs*
116+
117+
### macOS ###
118+
# General
58119
.DS_Store
59-
.DS_Store?
120+
.AppleDouble
121+
.LSOverride
122+
123+
# Icon must end with two \r
124+
Icon
125+
126+
# Thumbnails
60127
._*
128+
129+
# Files that might appear in the root of a volume
130+
.DocumentRevisions-V100
131+
.fseventsd
61132
.Spotlight-V100
133+
.TemporaryItems
62134
.Trashes
63-
ehthumbs.db
135+
.VolumeIcon.icns
136+
.com.apple.timemachine.donotpresent
137+
138+
# Directories potentially created on remote AFP share
139+
.AppleDB
140+
.AppleDesktop
141+
Network Trash Folder
142+
Temporary Items
143+
.apdisk
144+
145+
### Windows ###
146+
# Windows thumbnail cache files
64147
Thumbs.db
148+
Thumbs.db:encryptable
149+
ehthumbs.db
150+
ehthumbs_vista.db
151+
152+
# Dump file
153+
*.stackdump
154+
155+
# Folder config file
156+
[Dd]esktop.ini
157+
158+
# Recycle Bin used on file shares
159+
$RECYCLE.BIN/
160+
161+
# Windows Installer files
162+
*.cab
163+
*.msi
164+
*.msix
165+
*.msm
166+
*.msp
167+
168+
# Windows shortcuts
169+
*.lnk
170+
171+
### AndroidStudio ###
172+
# Covers files to be ignored for android development using Android Studio.
173+
174+
# Built application files
175+
176+
# Files for the ART/Dalvik VM
177+
178+
# Java class files
179+
180+
# Generated files
181+
182+
# Gradle files
183+
.gradle
184+
185+
# Signing files
186+
.signing/
187+
188+
# Local configuration file (sdk path, etc)
189+
190+
# Proguard folder generated by Eclipse
191+
192+
# Log Files
193+
194+
# Android Studio
195+
/*/build/
196+
/*/local.properties
197+
/*/out
198+
/*/*/build
199+
/*/*/production
200+
*.ipr
201+
*.swp
202+
203+
# Android Patch
204+
205+
# External native build folder generated in Android Studio 2.2 and later
206+
207+
# NDK
208+
obj/
209+
210+
# IntelliJ IDEA
211+
*.iws
212+
/out/
213+
214+
# User-specific configurations
215+
.idea/caches/
216+
.idea/libraries/
217+
.idea/shelf/
218+
.idea/.name
219+
.idea/compiler.xml
220+
.idea/copyright/profiles_settings.xml
221+
.idea/encodings.xml
222+
.idea/misc.xml
223+
.idea/scopes/scope_settings.xml
224+
.idea/vcs.xml
225+
.idea/jsLibraryMappings.xml
226+
.idea/datasources.xml
227+
.idea/dataSources.ids
228+
.idea/sqlDataSources.xml
229+
.idea/dynamic.xml
230+
.idea/uiDesigner.xml
231+
232+
# OS-specific files
233+
.DS_Store?
234+
235+
# Legacy Eclipse project files
236+
.classpath
237+
.project
238+
.cproject
239+
.settings/
240+
241+
# Mobile Tools for Java (J2ME)
242+
.mtj.tmp/
243+
244+
# Package Files #
245+
*.war
246+
*.ear
247+
248+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
249+
hs_err_pid*
250+
251+
## Plugin-specific files:
252+
253+
# mpeltonen/sbt-idea plugin
254+
.idea_modules/
255+
256+
# JIRA plugin
257+
atlassian-ide-plugin.xml
258+
259+
# Mongo Explorer plugin
260+
.idea/mongoSettings.xml
261+
262+
# Crashlytics plugin (for Android Studio and IntelliJ)
263+
com_crashlytics_export_strings.xml
264+
crashlytics.properties
265+
crashlytics-build.properties
266+
fabric.properties
267+
268+
### AndroidStudio Patch ###
269+
270+
# Google Services (e.g. APIs or Firebase)
271+
google-services.json
272+
273+
!/gradle/wrapper/gradle-wrapper.jar
274+
275+
# End of https://www.gitignore.io/api/linux,macos,windows,android,firebase,androidstudio

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Uninstall System Apps
2-
<img src="https://www.serlonghi.com/project_resources/uninstall_system_apps/Launch_icon.png" align="left" width="200" hspace="10" vspace="10">Uninstall System Apps is an application that allows you to uninstall any app on your phone, even system apps, quickly and easily! <br/>
3-
Your list of deleted apps can be exported and shared with your friends.<br/>
4-
The idea behind this project is to create a community where people share their lists of apps selected. I've created a bunch of lists [here](https://mega.nz/#F!SHZiHYpI!yI6_Xoz7gk0uXOTJ9hRsgQ) for the most popular phones. Feel free to [upload](https://mega.nz/megadrop/nXo47K2Afi4) your list, any help is always appreciated.</br>
5-
Uninstall System Apps is now available on the Play Store, you can join [here](https://play.google.com/store/apps/details?id=com.sernic.uninstallsystemapps)!</br>
2+
<img src="https://www.serlonghi.com/project_resources/uninstall_system_apps/Launch_icon.png" align="left" width="200" hspace="10" vspace="10">Uninstall System Apps is an application that allows you to uninstall any application on your phone, even system applications, quickly and easily! <br/>
3+
Your list of deleted applications can be exported and shared with your friends.<br/>
4+
The idea behind this project is to create a community where people share their lists of applications selected. I've created a bunch of lists [here](https://mega.nz/#F!SHZiHYpI!yI6_Xoz7gk0uXOTJ9hRsgQ) for the most popular phones. Feel free to [upload](https://mega.nz/megadrop/nXo47K2Afi4) your list, any help is always appreciated.</br>
5+
Uninstall System Apps is now available on the Play Store, you can join [here](https://play.google.com/store/applications/details?id=com.sernic.uninstallsystemapps)!</br>
66

77
<div style="display:flex;" >
8-
<a href="https://play.google.com/store/apps/details?id=com.sernic.uninstallsystemapps">
8+
<a href="https://play.google.com/store/applications/details?id=com.sernic.uninstallsystemapps">
99
<img alt="Get it on Google Play"
1010
height="80"
1111
src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" />
@@ -15,13 +15,13 @@ Uninstall System Apps is now available on the Play Store, you can join [here](ht
1515

1616
#### WHY UNINSTALL SYSTEM APPS?
1717

18-
• DELETE MORE THAN ONE APP AT THE SAME TIME: one click is enough to remove all selected apps. <br/>
18+
• DELETE MORE THAN ONE APP AT THE SAME TIME: one click is enough to remove all selected applications. <br/>
1919

2020
• EXPORT YOUR CONFIGURATION: your custom list can be exported and imported on every device running Android. <br/>
2121

2222
• SHARE YOUR LIST WITH EVERYONE: you can share your custom list with your friends and let them use it on their devices.<br/>
2323

24-
Note: root permissions is required to uninstall system apps.
24+
Note: root permissions is required to uninstall system applications.
2525

2626
## Screenshots
2727
<div style="display:flex;" >

0 commit comments

Comments
 (0)