Skip to content

Commit 6b879bc

Browse files
committed
Changes to match Play Store listing
Had to revert the package name to `com.hackfsu.android.hackfsu`.
1 parent a8d686a commit 6b879bc

File tree

5 files changed

+56
-9
lines changed

5 files changed

+56
-9
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ abstract class, such as `UpdateModel`, `ScheduleModel`, etc.
2626
An important note about modifying `API.java` is that it uses a private method,
2727
`performCallback(APICallback, <? extends BaseModel>)` to execute the APICallback
2828
as defined in an Activity/Fragment on the UI thread.
29+
30+
## Key Signing
31+
32+
To release this app on the Play Store, it need digitally signed. For security,
33+
the keystore is not on this repo. Please contact Andrew at `andrew@andrewsosa.com`
34+
to obtain a copy of the keystore for future releases.

mobile/build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ android {
44
compileSdkVersion 25
55
buildToolsVersion "23.0.3"
66
defaultConfig {
7-
applicationId 'com.hackfsu.mobile.android'
7+
applicationId 'com.hackfsu.android.hackfsu'
88
minSdkVersion 19
99
targetSdkVersion 25
1010
versionCode 10
@@ -37,14 +37,11 @@ dependencies {
3737
compile 'com.android.support:recyclerview-v7:25.1.1'
3838
compile 'com.android.support:cardview-v7:25.1.1'
3939
compile 'com.android.support:multidex:1.0.1'
40-
4140
// Adds dividers to our recyclerviews
4241
compile 'com.yqritc:recyclerview-flexibledivider:1.2.6'
43-
4442
// For networking
4543
compile 'com.squareup.okhttp3:okhttp:3.5.0'
4644
compile 'com.squareup.picasso:picasso:2.5.2'
47-
4845
// Crash reporting
4946
compile 'com.google.firebase:firebase-crash:10.0.0'
5047
}

mobile/google-services.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,50 @@
4949
"status": 2
5050
}
5151
}
52+
},
53+
{
54+
"client_info": {
55+
"mobilesdk_app_id": "1:1040602838619:android:a5eea346753e4540",
56+
"android_client_info": {
57+
"package_name": "com.hackfsu.android.hackfsu"
58+
}
59+
},
60+
"oauth_client": [
61+
{
62+
"client_id": "1040602838619-eun76uvnvqdo6jf920q2qpqqgg8dqd70.apps.googleusercontent.com",
63+
"client_type": 1,
64+
"android_info": {
65+
"package_name": "com.hackfsu.android.hackfsu",
66+
"certificate_hash": "3E0A305C43DF3BFCB1811725C4625FD9D0F14DF0"
67+
}
68+
},
69+
{
70+
"client_id": "1040602838619-ma6lm24oh1685dnnd6uldkbderho6vgq.apps.googleusercontent.com",
71+
"client_type": 3
72+
}
73+
],
74+
"api_key": [
75+
{
76+
"current_key": "AIzaSyAb0-hMV59Ts6s4azyUVE4Yc0J_wPFLVv4"
77+
}
78+
],
79+
"services": {
80+
"analytics_service": {
81+
"status": 1
82+
},
83+
"appinvite_service": {
84+
"status": 2,
85+
"other_platform_oauth_client": [
86+
{
87+
"client_id": "1040602838619-ma6lm24oh1685dnnd6uldkbderho6vgq.apps.googleusercontent.com",
88+
"client_type": 3
89+
}
90+
]
91+
},
92+
"ads_service": {
93+
"status": 2
94+
}
95+
}
5296
}
5397
],
5498
"configuration_version": "1"

mobile/mobile-release.apk

-1.07 KB
Binary file not shown.

mobile/src/main/AndroidManifest.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
77
<uses-permission android:name="android.permission.WAKE_LOCK" />
88
<uses-permission android:name="android.permission.VIBRATE" />
9-
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
10-
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
9+
<!--<uses-permission android:name="android.permission.GET_ACCOUNTS" />-->
10+
<!--<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />-->
1111

12-
<permission
13-
android:name="com.hackfsu.mobile.android.app.permission.C2D_MESSAGE"
14-
android:protectionLevel="signature" />
12+
<!--<permission-->
13+
<!--android:name="com.hackfsu.mobile.android.app.permission.C2D_MESSAGE"-->
14+
<!--android:protectionLevel="signature" />-->
1515

1616
<!--<uses-permission android:name="com.hackfsu.mobile.android.hackfsu.permission.C2D_MESSAGE" />-->
1717

0 commit comments

Comments
 (0)