Remove package id from manifest

pull/1771/head
Quentin Hibon 2 years ago
parent 6b793c7c16
commit bb2d9b0522

@ -31,6 +31,7 @@ tasks.compileLint {
}
android {
namespace = "org.isoron.uhabits"
compileSdk = 32

@ -16,8 +16,7 @@
~ You should have received a copy of the GNU General Public License along
~ with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.isoron.uhabits">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.VIBRATE" />
@ -216,7 +215,8 @@
</intent-filter>
</receiver>
<receiver android:name=".receivers.WidgetReceiver"
<receiver
android:name=".receivers.WidgetReceiver"
android:exported="true"
android:permission="false">
<intent-filter>

Loading…
Cancel
Save