22<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
33 package =" org.sofwerx.torgi" >
44 <uses-permission android : name =" android.permission.WRITE_EXTERNAL_STORAGE" />
5- <uses-permission android : name =" android.permission.SEND_SMS" />
65 <uses-permission android : name =" android.permission.ACCESS_FINE_LOCATION" />
7- <uses-permission android : name =" android.permission.WAKE_LOCK" />
6+ <uses-permission android : name =" android.permission.INTERNET" />
7+
8+ <uses-feature android : name =" android.hardware.location.gps" />
89
910 <application
1011 android : icon =" @mipmap/ic_launcher"
1112 android : label =" @string/app_name"
1213 android : roundIcon =" @mipmap/ic_launcher_round"
1314 android : supportsRtl =" true"
1415 android : theme =" @style/AppTheme" >
16+
17+ <service android : name =" org.sofwerx.torgi.service.TorgiService" />
18+
1519 <activity
16- android : name =" .MainActivity"
17- android : label =" @string/app_name"
18- android : theme =" @style/AppTheme.NoActionBar" >
20+ android : name =" .ui.MainActivity"
21+ android : label =" @string/app_name" >
1922 <intent-filter >
2023 <action android : name =" android.intent.action.MAIN" />
2124 <category android : name =" android.intent.category.LAUNCHER" />
2225 </intent-filter >
23- <intent-filter >
24- <action android : name =" android.intent.action.VIEW" />
25- <category android : name =" android.intent.category.DEFAULT" />
26- <data android : mimeType =" vnd.android-dir/mms-sms" />
27- </intent-filter >
28- <intent-filter >
29- <action android : name =" android.intent.action.VIEW" />
30- <action android : name =" android.intent.action.SENDTO" />
31- <category android : name =" android.intent.category.DEFAULT" />
32- <category android : name =" android.intent.category.BROWSABLE" />
33- <data android : scheme =" sms" />
34- <data android : scheme =" smsto" />
35- </intent-filter >
36- <intent-filter >
37- <action android : name =" android.intent.action.SEND" />
38- <category android : name =" android.intent.category.DEFAULT" />
39- <data android : mimeType =" text/plain" />
40- </intent-filter >
4126 </activity >
42-
4327 </application >
44-
4528</manifest >
0 commit comments