Skip to content

Commit 6ad1605

Browse files
committed
Update placeholder format
1 parent 74dd268 commit 6ad1605

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/routes/docs/quick-starts/android-java/+page.markdoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ implementation "io.appwrite:sdk-for-android:7.0.0"
5757
```
5858

5959
In order to allow creating OAuth sessions, the following activity needs to be added inside the `<application>` tag, along side the existing `<activity>` tags in your [AndroidManifest.xml](https://github.com/appwrite/playground-for-flutter/blob/master/android/app/src/main/AndroidManifest.xml).
60-
Be sure to replace the **[PROJECT_ID]** string with your actual Appwrite project ID.
60+
Be sure to replace the **<PROJECT_ID>** string with your actual Appwrite project ID.
6161
You can find your Appwrite project ID in you project settings screen in your Appwrite Console.
6262

6363
```xml
@@ -71,7 +71,7 @@ You can find your Appwrite project ID in you project settings screen in your App
7171
<action android:name="android.intent.action.VIEW" />
7272
<category android:name="android.intent.category.DEFAULT" />
7373
<category android:name="android.intent.category.BROWSABLE" />
74-
<data android:scheme="appwrite-callback-[PROJECT_ID]" />
74+
<data android:scheme="appwrite-callback-<PROJECT_ID>" />
7575
</intent-filter>
7676
</activity>
7777
</application>
@@ -89,7 +89,7 @@ Find your project's ID in the **Settings** page.
8989
![Project settings screen](/images/docs/quick-starts/project-id.png)
9090
{% /only_light %}
9191

92-
Create a new file `AppwriteHelper.java` and add the following code to it, replacing `[PROJECT_ID]` with your project ID.
92+
Create a new file `AppwriteHelper.java` and add the following code to it, replacing `<PROJECT_ID>` with your project ID.
9393

9494
```java
9595
package YOUR_ROOT_PACKAGE_HERE;
@@ -112,7 +112,7 @@ public class AppwriteHelper {
112112
public static void init(Context context) {
113113
client = new Client(context)
114114
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1")
115-
.setProject("[PROJECT_ID]");
115+
.setProject("<PROJECT_ID>");
116116

117117
account = new Account(client);
118118
}

0 commit comments

Comments
 (0)