Skip to content

Commit

Permalink
Fixed the web service's URL for YouBike, and made a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Cantin committed Jun 29, 2014
1 parent 76cc8c4 commit dbde7c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lemoulinstudio.bikefriend"
android:versionCode="5"
android:versionName="0.9.4">
android:versionCode="6"
android:versionName="0.9.5">

<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="10"/>
android:targetSdkVersion="19"/>

<!-- Needed by Google Map API v2 -->
<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="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

Expand All @@ -38,5 +39,9 @@

<meta-data android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyAd0eInr_bvHl-MonVL5K4prBznzBrKrUk"/>

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

</application>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class YouBikeStationProvider extends InternetStationProvider<YouBikeStati

private static URL getServiceURL() {
try {
return new URL("http://210.69.61.60:8080/you/gwjs_cityhall.json");
return new URL("http://opendata.dot.taipei.gov.tw/opendata/gwjs_cityhall.json");
}
catch (MalformedURLException ex) {
return null;
Expand Down

0 comments on commit dbde7c1

Please sign in to comment.