Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Poberro committed Mar 18, 2016
1 parent 8211be0 commit eabbe57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DOC_monitoring_after_restart.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class MyApp extends Application {
}
}
```
* Don't forget to add you Application class to AndroidManifest.xml in <application> tag.
* Don't forget to add your Application class to AndroidManifest.xml in the `<application>` tag.
```xml
<application
android:allowBackup="true"
Expand All @@ -65,7 +65,7 @@ public class MyApp extends Application {
android:name=".MyApp"
>
```
* In one of your activities check permission for Bluetooth and Location. Access must be granted by the user before system is rebooted. If not monitoring will not start.
* In one of your activities check permission for Bluetooth and Location. Access must be granted by the user before system is rebooted. If not, monitoring will not start.
```java
SystemRequirementsChecker.checkWithDefaultDialogs(this);
```

0 comments on commit eabbe57

Please sign in to comment.