8000 Remove AndroidManifest.xml files due to using android.namespace by grine4ka · Pull Request #118 · formatools/forma · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Remove AndroidManifest.xml files due to using android.namespace #118

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

Merged
merged 1 commit into from
Apr 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations 8000
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion application/binary/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.stepango.blockme.app"/>
<manifest>
<!--
We cannot delete this because binary need even empty manifest to compile
(checks via com.android.internal.version-check plugin breaks if there is no manifest file)
Need to investigate how to bypass it
-->
</manifest>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions application/common/util-native/src/main/AndroidManifest.xml

This file was deleted.

1 change: 0 additions & 1 deletion application/core/di/library/src/main/AndroidManifest.xml

This file was deleted.

1 change: 0 additions & 1 deletion application/core/mvvm/library/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion application/core/theme/res/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion application/feature/home/impl/src/main/AndroidManifest.xml

This file was deleted.

1 change: 0 additions & 1 deletion application/feature/home/res/src/main/AndroidManifest.xml

This file was deleted.

34 changes: 17 additions & 17 deletions application/root-app/src/main/AndroidManifest.xml
B93C
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.stepango.blockme.root.library">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.INTERNET"/>

<application
android:name=".SampleApp"
android:fullBackupContent="true"
android:allowBackup="true"
android:extractNativeLibs="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:targetApi="m">
<activity android:name=".SampleMainActivity"
android:exported="true">
android:name=".SampleApp"
android:fullBackupContent="true"
android:allowBackup="true"
android:extractNativeLibs="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:targetApi="m">
<activity
android:name=".SampleMainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
Expand Down
1 change: 0 additions & 1 deletion application/root-res/src/main/AndroidManifest.xml

This file was deleted.

1 change: 0 additions & 1 deletion application/toggle-widget/src/main/AndroidManifest.xml

This file was deleted.

0