Skip to content

Commit fead704

Browse files
authored
Update README.md (#1)
1 parent af60891 commit fead704

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

README.md

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,7 @@ For more info, visit Instabug for Unity on [Instabug.com](https://www.instabug.c
2525

2626
2. Export your Unity project by opening Build Settings from “File —> Build Settings”, and checking the Export button. Choose your desired path to save the project.
2727

28-
3. Open the exported project from Android Studio, and add the following changes to the build.gradle file.
29-
```
30-
...
31-
allprojects {
32-
repositories {
33-
jcenter()
34-
google()
35-
maven {
36-
// TODO add this only if interested in getting SNAPSHOT releases
37-
url 'https://oss.sonatype.org/content/repositories/snapshots' }
38-
... }
39-
}
40-
...
41-
dependencies {
42-
...
43-
compile 'com.instabug.library:instabug:5.0.0.3.19-SNAPSHOT'
44-
}
45-
...
46-
```
47-
4. Create a new Application.java class that should look like this. Add your app token, and change the invocation event from this class.
28+
3. Open the exported project from Android Studio, and create a new Application.java class that should look like this. Add your app token, and change the invocation event from this class.
4829
```
4930
...
5031
import android.app.Application;
@@ -60,7 +41,7 @@ For more info, visit Instabug for Unity on [Instabug.com](https://www.instabug.c
6041
.build(); Instabug.setUnityEnabled(true);
6142
} }
6243
```
63-
5. Add the Application class name to the AndroidManifest.xml file.
44+
4. Add the Application class name to the AndroidManifest.xml file.
6445
```
6546
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ...> ...
6647
<application android:name=".MyApp" ...> ...

0 commit comments

Comments
 (0)