Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit bfbf8f7

Browse files
committed
Merge branch 'release/v2.1'
* release/v2.1: (36 commits) Updated binaries Added units for export log Updated model in ready html Fixed crash with pre 2.0 data Added delivery unit to plant list Updated build tools version Set drawer version Added binaries Updated icon Updated read with new screenshots Updated icon Bump version code Added missing delivery unit for additives Reduced margin from date Tidied margins and paddings to give overflow larger hit aera Added additive validation Corrected defaults Updated action adapter and watering fragment for new delivery unit Fixed renamed method and implemented Unit methods Corrected setting summary on change ...
2 parents 2302650 + 9a40517 commit bfbf8f7

38 files changed

+605
-123
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
Welcome to grow tracker. This app was created to help record data about growing plants in order to monitor the growing conditions to help make the plants grow better, and identify potential issues during the grow process.
44

5-
[Latest APK: (MD5) de708f0b7905ea193b6f414eedc7b3e4 v2.0](https://github.com/7LPdWcaW/GrowTracker-Android/raw/master/app/app-production-release.apk)
5+
[Latest APK: (MD5) 57ff9134cb517200a8ebffac5bff2b8a v2.1](https://github.com/7LPdWcaW/GrowTracker-Android/raw/master/app/app-production-release.apk)
66

7-
[Latest APK (Discrete): (MD5) 07fd56b31391b955f6321396d77ef115 v2.0](https://github.com/7LPdWcaW/GrowTracker-Android/raw/master/app/app-discrete-release.apk)
7+
[Latest APK (Discrete): (MD5) db92a90c3bcd596e3bc10316180808b1 v2.1](https://github.com/7LPdWcaW/GrowTracker-Android/raw/master/app/app-discrete-release.apk)
88

99
# Installation
1010

11-
The app requires no permissions except for external storage (for caching plant data and images) which you can see [here](https://github.com/7LPdWcaW/GrowTracker-Android/blob/develop/app/src/main/AndroidManifest.xml) in order for users to maintain anonymity.
11+
The app requires no permissions except for external storage (for caching plant data and images) which you can see [here](https://github.com/7LPdWcaW/GrowTracker-Android/blob/develop/app/src/main/AndroidManifest.xml) in order for users to maintain anonymity, and a minimum Android version of `4.0.3` and above
1212

1313
## How to install
1414

@@ -35,6 +35,7 @@ The app requires no permissions except for external storage (for caching plant d
3535
[![action filters](screenshots/9-thumb.png)](screenshots/9.png)
3636
[![action options](screenshots/10-thumb.png)](screenshots/10.png)
3737
[![settings](screenshots/11-thumb.png)](screenshots/11.png)
38+
[![measurements](screenshots/12-thumb.png)](screenshots/12.png)
3839

3940
# About the app
4041

@@ -87,7 +88,7 @@ Water action for waterings
8788
"ph": <Double>,
8889
"ppm": <Long>,
8990
"runoff": <Double>,
90-
"amount": <Integer>,
91+
"amount": <Double>,
9192
"date": 1431268453111,
9293
"type": "Water",
9394
"temp": <Integer>

app/app-discrete-release.apk

-34.1 KB
Binary file not shown.

app/app-production-release.apk

-18 KB
Binary file not shown.

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ repositories {
66

77
android {
88
compileSdkVersion 24
9-
buildToolsVersion "24.0.1"
9+
buildToolsVersion "24.0.3"
1010

1111
defaultConfig {
1212
applicationId "me.anon.grow"
1313
minSdkVersion 15
1414
targetSdkVersion 24
15-
versionCode 6
16-
versionName "2.0"
15+
versionCode 7
16+
versionName "2.1"
1717
}
1818

1919
lintOptions {

app/src/discrete/res/mipmap-hdpi/ic_launcher.png

100644100755
-2.95 KB
Loading

app/src/discrete/res/mipmap-mdpi/ic_launcher.png

100644100755
-2.33 KB
Loading

app/src/discrete/res/mipmap-xhdpi/ic_launcher.png

100644100755
-4.13 KB
Loading

app/src/discrete/res/mipmap-xxhdpi/ic_launcher.png

100644100755
-8.47 KB
Loading

app/src/discrete/res/mipmap-xxxhdpi/ic_launcher.png

100644100755
-14.3 KB
Loading

app/src/main/AndroidManifest.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,18 @@
1212
android:theme="@style/AppTheme"
1313
android:name=".MainApplication"
1414
>
15+
<provider
16+
android:name="android.support.v4.content.FileProvider"
17+
android:authorities="${applicationId}.provider"
18+
android:exported="false"
19+
android:grantUriPermissions="true"
20+
>
21+
<meta-data
22+
android:name="android.support.FILE_PROVIDER_PATHS"
23+
android:resource="@xml/provider_paths"
24+
/>
25+
</provider>
26+
1527
<activity android:name=".BootActivity">
1628
<intent-filter>
1729
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)