Skip to content

Commit

Permalink
Remove unneeded package declaration in transport runtime (#6545)
Browse files Browse the repository at this point in the history
The package declaration inside AndroidManifest.xml is no longer used,
and the `namespace` declaration in the gradle file is the one that
should be used.
  • Loading branch information
rlazo authored Nov 29, 2024
1 parent 800bc7a commit 01bd3d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions transport/transport-runtime/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
<!-- See the License for the specific language governing permissions and -->
<!-- limitations under the License. -->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.datatransport.runtime">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
<!--<uses-sdk android:minSdkVersion="21"/>-->
Expand Down

0 comments on commit 01bd3d7

Please sign in to comment.