Skip to content
Snippets Groups Projects
Select Git revision
  • ab0728204ca4164a0c92018f2369add58b3097c7
  • master default
2 results

AndroidManifest.xml

Blame
  • AndroidManifest.xml 944 B
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.speedyapps.keepyousafe">
    
        <uses-permission android:name="android.permission.SEND_SMS"/>
        <uses-permission android:name="android.permission.READ_CONTACTS"/>
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
    
            <service
                android:name=".alarmService"
                android:enabled="true"
                android:exported="true"></service>
        </application>
    
    </manifest>