nandi/vflutter_ffipublic Fork 0
472eb493bac94bdcb79a38829ccca0c541256fef
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 · 699 BGroovy Blame HistoryRaw
Replace V with Nim 472eb49 nandithebull 20h ago1group 'dev.nimflutter.nimflutter_ffi'
Initial commit: V -> Flutter FFI plugin ad0ccda nandi yesterday2version '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 {
Replace V with Nim 472eb49 nandithebull 20h ago13 namespace 'dev.nimflutter.nimflutter_ffi'
Initial commit: V -> Flutter FFI plugin ad0ccda nandi yesterday14 compileSdk 34
15 defaultConfig {
16 minSdk 21
Replace V with Nim 472eb49 nandithebull 20h ago17 // Nim emits C; the NDK compiles it. No Nim-side cross-compilation needed.
Initial commit: V -> Flutter FFI plugin ad0ccda nandi yesterday18 externalNativeBuild { cmake { arguments '-DANDROID_STL=none' } }
19 }
20 externalNativeBuild {
21 cmake {
22 path '../src/CMakeLists.txt'
23 version '3.22.1'
24 }
25 }
26}