Nomad changes
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s

This commit is contained in:
Henrik Jess Nielsen
2026-06-01 23:40:55 +02:00
parent 72b1a0a6ed
commit b4c07d3693
5723 changed files with 1130655 additions and 0 deletions

7
packages/dart/android/CMakeLists.txt generated Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.10)
project(kreuzberg_dart VERSION 1.0)
add_library(kreuzberg_dart SHARED IMPORTED)
set_target_properties(kreuzberg_dart PROPERTIES
IMPORTED_LOCATION "${CMAKE_CURRENT_SOURCE_DIR}/src/main/jniLibs/${ANDROID_ABI}/libkreuzberg_dart.so"
)

View File

@@ -0,0 +1,19 @@
package io.flutter.plugins;
import androidx.annotation.Keep;
import androidx.annotation.NonNull;
import io.flutter.Log;
import io.flutter.embedding.engine.FlutterEngine;
/**
* Generated file. Do not edit.
* This file is generated by the Flutter tool based on the
* plugins that support the Android platform.
*/
@Keep
public final class GeneratedPluginRegistrant {
private static final String TAG = "GeneratedPluginRegistrant";
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
}
}

2
packages/dart/android/local.properties generated Normal file
View File

@@ -0,0 +1,2 @@
flutter.sdk=/opt/homebrew/share/flutter
sdk.dir=/opt/homebrew/share/android-commandlinetools

View File

@@ -0,0 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.kreuzberg">
</manifest>

View File