Skip to content

Commit 466e7e0

Browse files
addisonElliottflovilmart
authored andcommitted
Register Application in Manifest for Android Getting Started (#468)
* Remove skip/limit limit doc from Android Queries * Register Application in Manifest for Android Getting Started Include documentation that the developer needs to register the custom `Application` class in `AndroidManifest.xml` to correctly initialize Parse.
1 parent c2a352d commit 466e7e0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

_includes/android/getting-started.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,13 @@ public class App extends Application {
6464
}
6565
}
6666
```
67+
68+
For either option, the custom `Application` class must be registered in `AndroidManifest.xml`:
69+
```
70+
<application
71+
android:name=".App"
72+
...>
73+
...
74+
</application>
75+
```
76+

0 commit comments

Comments
 (0)