-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
112 lines (91 loc) · 5.58 KB
/
AndroidManifest.xml
File metadata and controls
112 lines (91 loc) · 5.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version='1.0' encoding='UTF-8'?>
<manifest package='com.rum.yobitch' android:versionCode='20140803' android:versionName='2.01' xmlns:android='http://schemas.android.com/apk/res/android'>
<application android:hardwareAccelerated='true' android:icon='@drawable/shout' android:label='@string/app_name' android:largeHeap='true'>
<activity
android:label='@string/app_name'
android:name='MainActivity'
android:screenOrientation="portrait">
<intent-filter>
<action android:name='android.intent.action.MAIN'/>
<category android:name='android.intent.category.LAUNCHER'/>
</intent-filter>
<!-- Intent filter to recognise live addition of friends -->
<intent-filter>
<action android:name='android.intent.action.VIEW'/>
<category android:name='android.intent.category.DEFAULT'/>
<category android:name='android.intent.category.BROWSABLE'/>
<data android:scheme="http"
android:host="www.yobitch.me"
android:pathPrefix="/i/"/> <!-- matches /i/123/makuchaku-1/ -->
</intent-filter>
<intent-filter>
<action android:name='android.intent.action.VIEW'/>
<category android:name='android.intent.category.DEFAULT'/>
<category android:name='android.intent.category.BROWSABLE'/>
<data android:scheme="http"
android:host="yobitch.me"
android:pathPrefix="/i/"/> <!-- matches /i/123/makuchaku-1/ -->
</intent-filter>
<!-- Intent filter to recognise live addition of friends -->
<ImageView android:id="@+id/shout" android:src="@drawable/shout"></ImageView>
<ImageView android:id="@+id/reply" android:src="@drawable/reply"></ImageView>
<ImageView android:id="@+id/splash" android:src="@drawable/splash"></ImageView>
<ImageView android:id="@+id/shout_small" android:src="@drawable/shout_small"></ImageView>
<ImageView android:id="@+id/sms_small" android:src="@drawable/sms_small"></ImageView>
</activity>
<receiver android:name="com.rum.yobitch.InstallReferrerBroadcastReceiver" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
<activity android:exported='false' android:name='org.ruboto.RubotoActivity'/>
<activity android:configChanges='orientation|screenSize'
android:exported='false'
android:name='org.ruboto.SplashActivity'
android:noHistory='true'
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<activity android:exported='false' android:name='org.ruboto.RubotoDialog' android:theme='@android:style/Theme.Dialog'/>
<service android:exported='false' android:name='org.ruboto.RubotoService'/>
<!-- GCM Related start -->
<receiver
android:name=".GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- http://stackoverflow.com/questions/17618982/gcm-service-not-available-on-android-2-2/17721385#17721385 -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.rum.yobitch.gcm" />
</intent-filter>
</receiver>
<service android:name=".GcmIntentService" />
<meta-data
android:name="com.google.android.gms.version"
android:value="5077000" />
<!-- GCM Related end -->
<!-- Admob related -->
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<!-- Admob related -->
<!-- Appnext.com SDK -->
<service android:name="com.appnext.appnextsdk.DownloadService"/>
<!-- Appnext.com SDK -->
</application>
<uses-sdk android:minSdkVersion='9' android:targetSdkVersion='20'/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- For Analytics -->
<uses-permission android:name="android.permission.SEND_SMS" /> <!-- For sending sms (user onboarding) -->
<!-- GCM Related start -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<permission android:name="com.rum.yobitch.gcm.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.rum.yobitch.gcm.permission.C2D_MESSAGE" />
<!-- GCM Related end -->
</manifest>