diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-03-27 18:07:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-27 12:37:18 +0000 |
commit | 2320201f895530d127441b15317bb6a557820396 (patch) | |
tree | 2fbb5f8618b28e00a98b54472e8a37faeba5019f /autofill-parser | |
parent | 4d3be5b0708cf8f6cfe40d790763a576d010bc18 (diff) |
Migrate namespaces to Gradle (#1805)
* ui-compose: update Gradle configuration
* gradle: fix namespace for a couple astray Compose dependencies
* all: switch to Gradle namespace property
Mirrors a similar change from AndroidX https://github.com/androidx/androidx/commit/dcfa035a961fd1daabb7dcccf97d77fa2a006abf
Diffstat (limited to 'autofill-parser')
-rw-r--r-- | autofill-parser/build.gradle.kts | 1 | ||||
-rw-r--r-- | autofill-parser/src/main/AndroidManifest.xml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/autofill-parser/build.gradle.kts b/autofill-parser/build.gradle.kts index f164f07e..0abeaa0e 100644 --- a/autofill-parser/build.gradle.kts +++ b/autofill-parser/build.gradle.kts @@ -13,6 +13,7 @@ plugins { android { defaultConfig { consumerProguardFiles("consumer-rules.pro") } sourceSets { getByName("test") { resources.srcDir("src/main/assets") } } + namespace = "com.github.androidpasswordstore.autofillparser" } dependencies { diff --git a/autofill-parser/src/main/AndroidManifest.xml b/autofill-parser/src/main/AndroidManifest.xml index 997924d6..e3cc34c8 100644 --- a/autofill-parser/src/main/AndroidManifest.xml +++ b/autofill-parser/src/main/AndroidManifest.xml @@ -3,4 +3,4 @@ ~ SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception --> -<manifest package="com.github.androidpasswordstore.autofillparser"></manifest> +<manifest /> |