Skip to content

Commit 4f0d6da

Browse files
author
andrewsosa001
committed
Merge pull request #1 from HackFSU/project-name-fix
Fixed name
2 parents 5617cfb + f5a2994 commit 4f0d6da

29 files changed

Lines changed: 62 additions & 71 deletions

.idea/dictionaries/andrewsosa.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mobile/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ android {
44
compileSdkVersion 23
55
buildToolsVersion "23.0.2"
66
defaultConfig {
7-
applicationId 'com.hackfsu.hackfsu_android'
7+
applicationId 'com.hackfsu.android.hackfsu'
88
minSdkVersion 16
99
targetSdkVersion 23
1010
versionCode 1
@@ -29,9 +29,9 @@ dependencies {
2929
compile 'com.android.support:recyclerview-v7:23.1.1'
3030
compile 'com.android.support:cardview-v7:23.1.1'
3131
compile 'com.android.support:multidex:1.0.1'
32-
compile 'com.yqritc:recyclerview-flexibledivider:1.2.6' // Optional, remove if needed.
32+
compile 'com.yqritc:recyclerview-flexibledivider:1.2.6'
33+
// Optional, remove if needed.
3334
//compile 'com.parse.bolts:bolts-android:1.+'
3435
compile 'com.parse:parse-android:1.+'
3536
compile 'com.parse:parseui-widget-android:0.0.1'
36-
3737
}

mobile/mobile.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@
101101
<orderEntry type="library" exported="" name="appcompat-v7-23.1.1" level="project" />
102102
<orderEntry type="library" exported="" name="parseui-widget-android-0.0.1" level="project" />
103103
<orderEntry type="library" exported="" name="recyclerview-flexibledivider-1.2.6" level="project" />
104+
<orderEntry type="library" exported="" name="parse-android-1.12.0" level="project" />
104105
<orderEntry type="library" exported="" name="bolts-tasks-1.3.0" level="project" />
105106
<orderEntry type="library" exported="" name="multidex-1.0.1" level="project" />
106-
<orderEntry type="library" exported="" name="parse-android-1.11.0" level="project" />
107107
<orderEntry type="library" exported="" name="cardview-v7-23.1.1" level="project" />
108108
<orderEntry type="library" exported="" scope="TEST" name="multidex-instrumentation-1.0.1" level="project" />
109109
</component>

mobile/src/androidTest/java/com/hackfsu/hackfsu_android/ApplicationTest.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

mobile/src/main/AndroidManifest.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.hackfsu.hackfsu_android">
3+
package="com.hackfsu.android.hackfsu">
44

55
<uses-permission android:name="android.permission.INTERNET" />
66
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
@@ -10,19 +10,19 @@
1010
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
1111

1212
<permission
13-
android:name="com.hackfsu.hackfsu_android.permission.C2D_MESSAGE"
13+
android:name="com.hackfsu.android.hackfsu.permission.C2D_MESSAGE"
1414
android:protectionLevel="signature" />
1515

16-
<uses-permission android:name="com.hackfsu.hackfsu_android.permission.C2D_MESSAGE" />
16+
<uses-permission android:name="com.hackfsu.android.hackfsu.permission.C2D_MESSAGE" />
1717

1818
<application
19-
android:name=".HackFSU"
19+
android:name="com.hackfsu.android.hackfsu.HackFSU"
2020
android:allowBackup="true"
2121
android:icon="@mipmap/ic_launcher"
2222
android:label="@string/app_name"
2323
android:theme="@style/AppTheme">
2424
<activity
25-
android:name=".MainActivity"
25+
android:name="com.hackfsu.android.hackfsu.MainActivity"
2626
android:label="@string/app_name"
2727
android:theme="@style/AppTheme.NoActionBar">
2828
<intent-filter>
@@ -32,19 +32,19 @@
3232
</intent-filter>
3333
</activity>
3434
<activity
35-
android:name=".HelpActivity"
35+
android:name="com.hackfsu.android.hackfsu.HelpActivity"
3636
android:label="@string/title_activity_help"
37-
android:parentActivityName=".MainActivity"
37+
android:parentActivityName="com.hackfsu.android.hackfsu.MainActivity"
3838
android:theme="@style/AppTheme.HelpRequest">
3939
<meta-data
4040
android:name="android.support.PARENT_ACTIVITY"
41-
android:value="com.hackfsu.hackfsu_android.MainActivity" />
41+
android:value="com.hackfsu.android.hackfsu.MainActivity" />
4242
</activity>
4343

4444
<service android:name="com.parse.PushService" />
4545

4646
<receiver
47-
android:name=".CustomPushReceiver"
47+
android:name="com.hackfsu.android.hackfsu.CustomPushReceiver"
4848
android:exported="false">
4949
<intent-filter>
5050
<action android:name="com.parse.push.intent.RECEIVE" />
@@ -59,7 +59,7 @@
5959
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
6060
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
6161

62-
<category android:name="com.hackfsu.hackfsu_android" />
62+
<category android:name="com.hackfsu.android.hackfsu" />
6363
</intent-filter>
6464
</receiver>
6565

mobile/src/main/java/com/hackfsu/hackfsu_android/BaseFragment.java renamed to mobile/src/main/java/com/hackfsu/android/hackfsu/BaseFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.hackfsu.hackfsu_android;
1+
package com.hackfsu.android.hackfsu;
22

33
import android.support.v4.app.Fragment;
44
import android.support.v7.widget.Toolbar;

mobile/src/main/java/com/hackfsu/hackfsu_android/CustomPushReceiver.java renamed to mobile/src/main/java/com/hackfsu/android/hackfsu/CustomPushReceiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.hackfsu.hackfsu_android;
1+
package com.hackfsu.android.hackfsu;
22

33
import android.content.Context;
44
import android.content.Intent;

mobile/src/main/java/com/hackfsu/hackfsu_android/FeedFragment.java renamed to mobile/src/main/java/com/hackfsu/android/hackfsu/FeedFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.hackfsu.hackfsu_android;
1+
package com.hackfsu.android.hackfsu;
22

33
import android.content.Context;
44
import android.content.SharedPreferences;

mobile/src/main/java/com/hackfsu/hackfsu_android/HackFSU.java renamed to mobile/src/main/java/com/hackfsu/android/hackfsu/HackFSU.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.hackfsu.hackfsu_android;
1+
package com.hackfsu.android.hackfsu;
22

33
import android.app.Application;
44

@@ -28,6 +28,6 @@ public void onCreate() {
2828
Parse.initialize(this, "7MgItVIkvSmADkIdIVPmEbIOOZQ84ilW224wXsgS", "hHoLbbe3SWIzt6JiXaNY5gdPQ47QBGH6AlbHHTih");
2929
ParseInstallation.getCurrentInstallation().saveInBackground();
3030

31-
ParsePush.subscribeInBackground("announcements");
31+
ParsePush.subscribeInBackground("updates");
3232
}
3333
}

mobile/src/main/java/com/hackfsu/hackfsu_android/HelpActivity.java renamed to mobile/src/main/java/com/hackfsu/android/hackfsu/HelpActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
package com.hackfsu.hackfsu_android;
1+
package com.hackfsu.android.hackfsu;
22

33
import android.app.ProgressDialog;
44
import android.os.Bundle;
5-
import android.support.design.widget.FloatingActionButton;
65
import android.support.design.widget.Snackbar;
76
import android.support.v7.app.AppCompatActivity;
87
import android.support.v7.widget.Toolbar;
@@ -11,6 +10,7 @@
1110
import android.widget.EditText;
1211
import android.widget.Toast;
1312

13+
import com.hackfsu.android.hackfsu.R;
1414
import com.parse.ParseException;
1515
import com.parse.ParseObject;
1616
import com.parse.SaveCallback;

0 commit comments

Comments
 (0)