3.1.0+1
This commit is contained in:
34
android/build.gradle
Normal file
34
android/build.gradle
Normal file
@@ -0,0 +1,34 @@
|
||||
group 'dev.isar.isar_flutter_libs'
|
||||
version '1.0'
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.3.1'
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
compileSdkVersion 30
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "androidx.startup:startup-runtime:1.1.1"
|
||||
}
|
||||
3
android/gradle.properties
Normal file
3
android/gradle.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
org.gradle.jvmargs=-Xmx1536M
|
||||
android.useAndroidX=true
|
||||
android.enableJetifier=true
|
||||
6
android/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
android/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
#Sat Nov 12 16:30:49 CET 2022
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
||||
distributionPath=wrapper/dists
|
||||
zipStorePath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
1
android/settings.gradle
Normal file
1
android/settings.gradle
Normal file
@@ -0,0 +1 @@
|
||||
rootProject.name = 'isar_flutter_libs'
|
||||
3
android/src/main/AndroidManifest.xml
Normal file
3
android/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,3 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="dev.isar.isar_flutter_libs" />
|
||||
@@ -0,0 +1,13 @@
|
||||
package dev.isar.isar_flutter_libs;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import io.flutter.embedding.engine.plugins.FlutterPlugin;
|
||||
|
||||
public class IsarFlutterLibsPlugin implements FlutterPlugin {
|
||||
@Override
|
||||
public void onAttachedToEngine(@NonNull FlutterPluginBinding flutterPluginBinding) { }
|
||||
|
||||
@Override
|
||||
public void onDetachedFromEngine(@NonNull FlutterPluginBinding binding) { }
|
||||
}
|
||||
BIN
android/src/main/jniLibs/arm64-v8a/libisar.so
Normal file
BIN
android/src/main/jniLibs/arm64-v8a/libisar.so
Normal file
Binary file not shown.
BIN
android/src/main/jniLibs/armeabi-v7a/libisar.so
Normal file
BIN
android/src/main/jniLibs/armeabi-v7a/libisar.so
Normal file
Binary file not shown.
BIN
android/src/main/jniLibs/x86/libisar.so
Normal file
BIN
android/src/main/jniLibs/x86/libisar.so
Normal file
Binary file not shown.
BIN
android/src/main/jniLibs/x86_64/libisar.so
Normal file
BIN
android/src/main/jniLibs/x86_64/libisar.so
Normal file
Binary file not shown.
Reference in New Issue
Block a user