It lives.
 
 
Go to file
Lonami Exo ea53d3cb1d Add modifier parameter to composables
For context, see:
https://android.googlesource.com/platform/frameworks/support/+/androidx-main/compose/docs/compose-api-guidelines.md#elements-accept-and-respect-a-modifier-parameter

> Element functions MUST accept a parameter of type Modifier.
> This parameter MUST be named modifier and MUST appear as the
> first optional parameter in the element function's parameter list
2022-10-24 14:15:20 +02:00
.idea Commit gradle migration settings 2022-10-12 11:44:17 +02:00
app Add modifier parameter to composables 2022-10-24 14:15:20 +02:00
gradle/wrapper Initial Commit 2022-10-11 10:51:26 +02:00
native Load more dialog data from the API 2022-10-23 20:25:45 +02:00
.gitignore Initial Commit 2022-10-11 10:51:26 +02:00
README.md Add a touch more detail to readme instructions (#1) 2022-10-12 23:25:41 +02:00
build.gradle Add dependency on native Rust project 2022-10-12 16:03:29 +02:00
gradle.properties Initial Commit 2022-10-11 10:51:26 +02:00
gradlew Mark gradlew as executable 2022-10-12 22:36:57 +01:00
gradlew.bat Initial Commit 2022-10-11 10:51:26 +02:00
settings.gradle Initial Commit 2022-10-11 10:51:26 +02:00

README.md

Building

Clone the repo, then open the project in Android Studio.

Make sure the required Android NDK platforms are installed, and the environment variable ANDROID_NDK_TOOLCHAIN_DIR is configured correctly.

On Windows, this might be a path such as the following (NDK "Side by side" SDK tool):

%LOCALAPPDATA%\Android\Sdk\ndk\25.1.8937393\toolchains\llvm\prebuilt\windows-x86_64\bin

Set your API ID and hash in the rust code.

Change the Cargo.toml to point to a local grammers source tree and remove the version argument.

Sync gradle files, and Android Studio's "build" and "run" should Just Work.