Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to AGP namespaces #3562

Merged
merged 2 commits into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions drivers/android-driver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ archivesBaseName = 'sqldelight-android-driver'

android {
compileSdk libs.versions.compileSdk.get() as int
namespace = "app.cash.sqldelight.driver.android"

lint {
textReport true
Expand Down
1 change: 0 additions & 1 deletion drivers/android-driver/src/main/AndroidManifest.xml

This file was deleted.

1 change: 1 addition & 0 deletions sample/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {

android {
compileSdk libs.versions.compileSdk.get() as int
namespace = "com.example.sqldelight.hockey"

lint {
textOutput file("$reportsDir/lint-results.txt")
Expand Down
4 changes: 1 addition & 3 deletions sample/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sqldelight.hockey"
>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:label="@string/app_name"
Expand Down