nandi/vflutter_ffipublic Fork 0
81540bbed5044d569fccbcb6c081878d54bbbd5b
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

build.gradle · 26 lines · 687 BGroovy Blame HistoryRaw
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 9h ago1group 'dev.vflutter.vflutter_ffi'
2version '0.1.0'
3
4buildscript {
5 repositories { google(); mavenCentral() }
6 dependencies { classpath 'com.android.tools.build:gradle:8.1.0' }
7}
8rootProject.allprojects { repositories { google(); mavenCentral() } }
9
10apply plugin: 'com.android.library'
11
12android {
13 namespace 'dev.vflutter.vflutter_ffi'
14 compileSdk 34
15 defaultConfig {
16 minSdk 21
17 // V emits C; the NDK compiles it. No V-side cross-compilation needed.
18 externalNativeBuild { cmake { arguments '-DANDROID_STL=none' } }
19 }
20 externalNativeBuild {
21 cmake {
22 path '../src/CMakeLists.txt'
23 version '3.22.1'
24 }
25 }
26}