mirror of
https://github.com/hmalik144/Weather-apps.git
synced 2025-12-10 02:05:20 +00:00
- Code inspection - Redundant resources removed - Resources moved the corresponding flavours - Deprecated dependencies upgraded - lint changes - circleci updated to capture screenshot
24 lines
1023 B
XML
24 lines
1023 B
XML
<?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.appttude.h_mal.atlas_weather">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.location"
|
|
android:required="true" />
|
|
<uses-feature
|
|
android:name="android.hardware.location.gps"
|
|
android:required="true" />
|
|
|
|
<application
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
tools:ignore="MissingApplicationIcon" />
|
|
|
|
</manifest> |