Skip to content

Commit

Permalink
Version 0.8 - Campus Map
Browse files Browse the repository at this point in the history
- The package name has been changed back to rpi.edu.rpimobile. This is
the package name on the play store and can't be changed. It is incorrect
and should technically be edu.rpi.rpimobile, but the application needs
to be re-released for the package name to change and everyone must
download a new app.
- The twitter4j library has been updated to use ssl, which is now
required by twitter.
- maps API key has been updated to continue using the same keystore.
  • Loading branch information
alexkarcher committed Jan 17, 2014
1 parent ecd0106 commit ea20c75
Show file tree
Hide file tree
Showing 143 changed files with 5,683 additions and 48 deletions.
4 changes: 2 additions & 2 deletions RPIMobile/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/android-rss-master"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry combineaccessrules="false" kind="src" path="/actionbarsherlock"/>
<classpathentry combineaccessrules="false" kind="src" path="/android-rss-master"/>
<classpathentry combineaccessrules="false" exported="true" kind="src" path="/actionbarsherlock440"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
32 changes: 22 additions & 10 deletions RPIMobile/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.rpi.rpimobile"
android:versionCode="4"
android:versionName="0.7.2" >
package="rpi.edu.rpimobile"
android:versionCode="5"
android:versionName="0.8" >

<!-- Target Version 2.2 and up -->
<uses-sdk
Expand Down Expand Up @@ -30,10 +30,22 @@
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />



<!-- Release using the alexkarcherkeystore keystore
Google Maps v2 API key below is for:
SHA1 F6:3E:E3:E1:9C:33:C9:8C:80:2B:38:95:A3:79:AA:01:DA:FD:0E:C8
Package: rpi.edu.rpimobile
-->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBXPU0aOA_8Ndm7_bjMJax1omc5KFMF0kk"/>


<!-- Google Maps v2 API key below is for:
SHA1: DE:D6:CF:EB:4F:E3:87:5F:CD:AA:8E:F9:C4:52:5D:B4:02:37:5F:40
Package: edu.rpi.rpimobile
Package: rpi.edu.rpimobile
-->
<!-- Release Only:
<meta-data
Expand All @@ -43,15 +55,15 @@

<!-- Google Maps v2 API key below is for:
SHA1: 74:88:34:85:DC:9E:3A:FB:09:91:23:82:40:41:A5:66:2D:42:0A:BB
Package: edu.rpi.rpimobile
Package: rpi.edu.rpimobile
-->
<!-- Debug Only: -->
<!-- Debug Only:
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBX5jsjiNB7ShkRkaAnomTfcq2b6h1VseI"/>

-->
<activity
android:name="edu.rpi.rpimobile.MainActivity"
android:name="rpi.edu.rpimobile.MainActivity"
android:label="@string/app_name"
android:configChanges="orientation"
android:screenOrientation="portrait">
Expand All @@ -63,11 +75,11 @@
</intent-filter>
</activity>
<activity
android:name="edu.rpi.rpimobile.PrefsActivity"
android:name="rpi.edu.rpimobile.PrefsActivity"
android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="edu.rpi.rpimobile.PREFS" />
<action android:name="rpi.edu.rpimobile.PREFS" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
Expand Down
87 changes: 87 additions & 0 deletions RPIMobile/bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="rpi.edu.rpimobile"
android:versionCode="5"
android:versionName="0.8" >

<!-- Target Version 2.2 and up -->
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />

<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:icon="@drawable/rpi_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock" >

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />



<!-- Google Maps v2 API key below is for:
SHA1 F6:3E:E3:E1:9C:33:C9:8C:80:2B:38:95:A3:79:AA:01:DA:FD:0E:C8
Package: rpi.edu.rpimobile
-->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBXPU0aOA_8Ndm7_bjMJax1omc5KFMF0kk"/>


<!-- Google Maps v2 API key below is for:
SHA1: DE:D6:CF:EB:4F:E3:87:5F:CD:AA:8E:F9:C4:52:5D:B4:02:37:5F:40
Package: rpi.edu.rpimobile
-->
<!-- Release Only:
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyC0I_BmD-pPhZDp3204l1EzU0QBd4R0TEY"/>
-->

<!-- Google Maps v2 API key below is for:
SHA1: 74:88:34:85:DC:9E:3A:FB:09:91:23:82:40:41:A5:66:2D:42:0A:BB
Package: rpi.edu.rpimobile
-->
<!-- Debug Only:
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBX5jsjiNB7ShkRkaAnomTfcq2b6h1VseI"/>
-->
<activity
android:name="rpi.edu.rpimobile.MainActivity"
android:label="@string/app_name"
android:configChanges="orientation"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"
/>

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="rpi.edu.rpimobile.PrefsActivity"
android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="rpi.edu.rpimobile.PREFS" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>

</manifest>
Loading

0 comments on commit ea20c75

Please sign in to comment.