Skip to content

Commit f289abd

Browse files
author
Paolo Rotolo
committed
Merge pull request #115 from Glucosio/develop
Merge develop to master
2 parents 261d02c + 18a6877 commit f289abd

File tree

32 files changed

+949
-183
lines changed

32 files changed

+949
-183
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Stories in Ready](https://badge.waffle.io/Glucosio/android.png?label=ready&title=Ready)](https://waffle.io/Glucosio/android)
21
[![Crowdin](https://d322cqt584bo4o.cloudfront.net/glucosio/localized.png)](https://crowdin.com/project/glucosio)
32
[![Build Status](https://travis-ci.org/Glucosio/android.svg)](https://travis-ci.org/Glucosio/android)
43
# Glucosio for Android
@@ -17,5 +16,13 @@ Glucosio for Android, an user centered free and open source app for diabetes man
1716
- Import the project in Android Studio: **File > New > Import Project**.
1817
Alternatively, from the Welcome screen, select **Import project**.
1918

19+
## Download on Google Play Store
20+
<a href="https://play.google.com/store/apps/details?id=org.glucosio.android" alt="Download from Google Play">
21+
<img src="http://www.android.com/images/brand/android_app_on_play_large.png">
22+
</a>
23+
24+
## Test Drive Glucosio Daily
25+
http://daily.glucosio.org
26+
2027

2128

app/build.gradle

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
apply plugin: 'com.android.application'
2+
apply plugin: 'com.google.gms.google-services'
23

34
android {
45
compileSdkVersion 23
56
buildToolsVersion "23.0.0"
6-
77
lintOptions {
88
abortOnError false
99
}
10-
1110
defaultConfig {
12-
applicationId "org.glucosio.android"
1311
minSdkVersion 16
1412
targetSdkVersion 23
15-
versionCode 1
16-
versionName "1.0"
13+
versionCode 2
14+
versionName '0.8.1'
1715
}
1816
buildTypes {
1917
release {
2018
minifyEnabled false
2119
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2220
}
21+
debug {
22+
applicationIdSuffix '.daily'
23+
versionNameSuffix '-DEVEL'
24+
}
2325
}
2426
lintOptions {
2527
abortOnError false
@@ -33,18 +35,17 @@ repositories {
3335
}
3436

3537
dependencies {
36-
compile fileTree(dir: 'libs', include: ['*.jar'])
37-
compile 'com.android.support:appcompat-v7:23.0.1'
38-
compile 'com.android.support:design:23.0.1'
39-
compile 'com.android.support:cardview-v7:23.0.1'
40-
compile 'com.android.support:recyclerview-v7:23.0.1'
38+
compile fileTree(include: ['*.jar'], dir: 'libs')
39+
compile 'com.android.support:appcompat-v7:23.1.0'
40+
compile 'com.android.support:design:23.1.0'
41+
compile 'com.android.support:cardview-v7:23.1.0'
42+
compile 'com.android.support:recyclerview-v7:23.1.0'
43+
compile 'com.android.support:percent:23.1.0'
44+
compile 'com.google.android.gms:play-services-analytics:8.1.0'
4145
compile 'com.wdullaer:materialdatetimepicker:1.5.3'
42-
compile 'com.android.support:percent:23.0.1'
4346
compile 'com.github.PhilJay:MPAndroidChart:v2.1.4'
4447
compile 'uk.co.chrisjenx:calligraphy:2.1.0'
45-
compile 'com.github.paolorotolo:gitty_reporter:1.1.1'
46-
compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
47-
compile 'com.wnafee:vector-compat:1.0.5'
48+
compile 'com.github.paolorotolo:gitty_reporter:1.2.1'
4849
compile 'io.realm:realm-android:0.83.0'
4950
compile 'net.danlew:android.joda:2.8.2'
5051
}

app/google-services.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"project_info":{"project_id":"glucosio-15798","project_number":"45702392997","name":"Glucosio"},"client":[{"client_info":{"mobilesdk_app_id":"1:45702392997:android:f3028c79631bec51","client_id":"android:org.glucosio.android","client_type":1,"android_client_info":{"package_name":"org.glucosio.android"}},"oauth_client":[],"api_key":[],"services":{"analytics_service":{"status":2,"analytics_property":{"tracking_id":"UA-68882401-2"}},"cloud_messaging_service":{"status":1,"apns_config":[]},"appinvite_service":{"status":1,"other_platform_oauth_client":[]},"google_signin_service":{"status":1},"ads_service":{"status":1}}}],"client_info":[],"ARTIFACT_VERSION":"1"}
5.06 KB
Loading
3.12 KB
Loading
7.25 KB
Loading
11.3 KB
Loading
16.5 KB
Loading
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<resources>
2+
<string name="app_name">Glucosio Daily</string>
3+
</resources>

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</activity>
3535
<activity
3636
android:name=".activity.LicenceActivity"
37-
android:theme="@style/GlucosioTheme">
37+
android:theme="@style/GlucosioSettings">
3838
</activity>
3939
</application>
4040

0 commit comments

Comments
 (0)