mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Consider namespace for applicationId
> If the application ID is not explicitly defined using the > applicationId property, it automatically takes on the same value as > the namespace. https://developer.android.com/studio/build/configure-app-module Found in com.amanoteam.unalix, see: https://gitlab.com/fdroid/fdroiddata/-/merge_requests/10895#note_907080341
This commit is contained in:
parent
620c06c377
commit
b6ea0d6acd
1 changed files with 1 additions and 1 deletions
|
@ -1670,7 +1670,7 @@ def remove_debuggable_flags(root_dir):
|
|||
vcsearch_g = re.compile(r'''\b[Vv]ersionCode\s*=?\s*["'(]*([0-9][0-9_]*)["')]*''').search
|
||||
vnsearch_g = re.compile(r'''\b[Vv]ersionName\s*=?\s*\(?(["'])((?:(?=(\\?))\3.)*?)\1''').search
|
||||
vnssearch_g = re.compile(r'''\b[Vv]ersionNameSuffix\s*=?\s*(["'])((?:(?=(\\?))\3.)*?)\1''').search
|
||||
psearch_g = re.compile(r'''\b(packageName|applicationId)\s*=*\s*["']([^"']+)["']''').search
|
||||
psearch_g = re.compile(r'''\b(packageName|applicationId|namespace)\s*=*\s*["']([^"']+)["']''').search
|
||||
fsearch_g = re.compile(r'''\b(applicationIdSuffix)\s*=*\s*["']([^"']+)["']''').search
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue