flutter安装和运行

1.创建flutter工程目录(各项目+flutter目录),在flutter 目录下载flutter SDK 1 2 git init git clone -b dev https://github.com/flutter/flutter.git 2.进入flutte

flutter创建工程报错

1.问题 在使用 flutter create命令创建flutter工程时,如果报`Cannot create a project within the Flutter SDK. Target directory ‘/Users/ksnowlv/Music/flutter/flutter/my_app’ is within the Flutter SDK at ‘/Users/k

swift泛型

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 /// 交换两个对象的值 /// /// - Parameters: /// - aValue: 对象a /// - bValue: 对象b func swapValues<T>(_ aValue: inout T, _ bValue: inout T)

Kotlin调用c++

本篇重点内容,Kotlin通过JNI直接调用C,C调用C++相关的类。实际上只是JAVA换成Kotlin的写法而已。 一.添加Kotlin类 声

Java调用C++

本篇重点内容,C如何调用C++类,思路是JAVA通过JNI直接调用C,C调用C++相关的类。 1.JAVA层接口Person类相关接口 1 2 3 4

Mac配置jni开发环境(二)

首页创建Android应用工程 1.Java层调用SO库 1 2 3 4 5 6 7 8 9 public class JavaCallJNI { static { System.loadLibrary("JniTest"); } public static native int showValue(int value); } 2.创建目录jni 在app/scr/m