Skip to content

Commit

Permalink
Release on GPlay.
Browse files Browse the repository at this point in the history
  • Loading branch information
kasnder committed Mar 4, 2020
1 parent b054f0e commit d45fc15
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 35 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Digital Habits aims to help you develop healthy digital habits. It comes with ti
</p>
## Installation

Android: Just head over to the Google Play Store.
Android: Download [here](https://play.google.com/store/apps/details?id=build.digital.habits) on the Google Play Store.

iOS: To be released soon.

Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {
applicationId "build.digital.habits"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionCode 2
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down
29 changes: 0 additions & 29 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,34 +30,5 @@
</intent-filter>

</activity>

<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"></meta-data>
</provider>
</application>

<!-- Permissions -->

<uses-permission android:name="android.permission.INTERNET" />
<!-- Camera, Photos, input file -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Geolocation API -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location.gps" />
<!-- Network API -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- Navigator.getUserMedia -->
<!-- Video -->
<uses-permission android:name="android.permission.CAMERA" />
<!-- Audio -->
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
</manifest>
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "be.digitally.well",
"name": "build.digital.habits",
"version": "1.0.0",
"author": "Guillaume Couairon, Konrad Kollnig",
"homepage": "https://github.com/OxfordHCC/digitally-well-app",
Expand Down
Binary file added resources/Digital Habits-feature-graphic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Screenshot_Goals.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Screenshot_Tips.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/goals/goals.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ import {DataService} from '../services/data.service';
})
export class GoalsPage {

constructor(private data: DataService) {}
constructor(public data: DataService) {}

}
2 changes: 1 addition & 1 deletion src/app/tip/tip.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { LocalNotifications } from '@ionic-native/local-notifications/ngx';
export class TipComponent implements OnInit {
@Input() tip: Tip;

constructor(private data: DataService,
constructor(public data: DataService,
private toastController: ToastController,
private localNotifications: LocalNotifications) { }

Expand Down

0 comments on commit d45fc15

Please sign in to comment.