Skip to content

Commit

Permalink
Update compose version & remove namespace from manifest files
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkranzler5 committed Dec 14, 2023
1 parent 7e057be commit 7a9e9af
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 19 deletions.
2 changes: 1 addition & 1 deletion formula-android-compose/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="com.instacart.formula.android.compose"/>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"/>
3 changes: 1 addition & 2 deletions formula-android-tests/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true"
android:label="@string/app_name"
Expand Down
2 changes: 1 addition & 1 deletion formula-android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="com.instacart.formula.android"/>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"/>
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dokka-gradle = "1.4.32"

kotlin = "1.9.20"
coroutines = "1.5.2"
compose = "1.0.1"
compose = "1.5.4"

androidX = "1.2.0"
lifecycle = "2.2.0"
Expand Down
3 changes: 1 addition & 2 deletions samples/composition/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula.samples.composition">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true"
android:label="@string/app_name"
Expand Down
3 changes: 1 addition & 2 deletions samples/counter/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula.counter">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true"
android:label="@string/app_name"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula.samples.networkstate">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:allowBackup="true"
Expand Down
3 changes: 1 addition & 2 deletions samples/stopwatch-compose/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula.compose.stopwatch">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:name=".StopwatchApp"
Expand Down
3 changes: 1 addition & 2 deletions samples/stopwatch-coroutines/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula.stopwatch">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true"
android:label="@string/app_name"
Expand Down
3 changes: 1 addition & 2 deletions samples/stopwatch/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.instacart.formula.stopwatch">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application android:allowBackup="true"
android:label="@string/app_name"
Expand Down
3 changes: 1 addition & 2 deletions samples/todoapp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.examples.todoapp">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:name=".TodoApp"
Expand Down

0 comments on commit 7a9e9af

Please sign in to comment.