diff --git a/android/getting-started.html b/android/getting-started.html index 769274a..9446e0d 100644 --- a/android/getting-started.html +++ b/android/getting-started.html @@ -203,7 +203,7 @@
Then select API 28 or higher for the minimum SDK and Kotlin DSL for the build configuration language.
Add the Hotwire Native dependencies to your app’s module (not top-level) build.gradle.kts
file. You can look up the version number from https://github.com/orgs/hotwired/packages.
Add the Hotwire Native dependencies to your app’s module (not top-level) build.gradle.kts
file. You can find the latest version number from github.com/hotwired/hotwire-native-android/releases.
dependencies {
implementation("dev.hotwire:core:<latest-version>")
implementation("dev.hotwire:navigation-fragments:<latest-version>")
}
Enable internet access for the app by opening AndroidManifest.xml
and adding the following above the <application>
node:
<uses-permission android:name="android.permission.INTERNET"/>