| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Andorid
- Framework
- EditText
- retrofit
- data binding
- Compose
- 3rd framework
- 3rd part
- Registering an InstanceCreator with Gson for this type may fix this problem
- defaultconfig
- NDK
- gradle
- mac
- Kotlin
- DispatchQueue
- Eclipse
- AOS
- boot
- BindingAdapter
- VM arguments
- Android
- xcframework
- Jetpack
- arm-linux-androideabi
- buildconfigfield
- Java
- Swift
- ndkVersion
- Chat GPT
- IOS
- Today
- Total
목록dev (49)
grape
결론부터 먼저 이야기하면 XCFramework로 변경하자. XCFramework Swfit 3rd party Framewrok를 기존 Object C에서 사용해 왔던 Fat Framwork 방식으로 만들어가다가 다양한 빌드 이슈에 직면하였고 오류의 내용들을 보면 문제가 발생한 원인이 버전 호환(swfitmodule) 및 다양한 지원에 대한 XCFramwork 추가로 인한 호환성 이슈로 판단. Project 생성 방법 Other - > Aggregate -> New Run Script Add Fat Framework Project ADD Script(New Run Script) XCFramework Fat Framework Tyep 구버전 FRAMEWORK_PATH="${SRCROOT}/../Framewo..
Project Create Target -> General -> Framework -> +Button -> Framework File import 후 사용 import simplelib let lib:simplelib = simplelib() lib.testW() 3rd part 에서 std library를 사용하였다면 app build 시 link error가 발생할 수 있다 Undefined symbols for architecture arm64: "std::__1::basic_string::operator=(std::__1::basic_string const&)", referenced from: Target Project -> Build Settings -> Linking -> Other Linke..
Sample Project Guide add c header simpleC.hpp #define EXTERN_API extern "C" #include EXTERN_API void test(); simpleC.cpp #include "simpleC.hpp" EXTERN_API void test() { } Project->Build Setting->Filtter (Mach)->Linking (static Library SDK배포용) *처음 개발단계에서는 디버깅을위해 dynamic 사용 build products->target(ex.Debug-iphonesimulator)->projectname.framework->Modules->module.modulemap 코드 복사 framework module sim..
xcode 시작 iOS -> Framework project type Organization Idenifier(조직명) 간단하게 com.pearlab 하고. ProductName 라이브러리 이름으로 simplelib 해주고 next simplelib 프로젝트 생성! next [iOS]3rd part framework project 2 - modulemap setting(c API Support)
Setting Gradle 6.8 Java 11 Gradle task -> jar plugins { // Apply the java-library plugin for API and implementation separation. id 'java-library' id 'com.github.johnrengelman.shadow' version '6.1.0' // 추가한 코드 } jar { enabled = false finalizedBy shadowJar // 추가한 코드 manifest { attributes 'Main-Class': 'name.Main' } } Version Gradle Shadow 5.x 5.2.0 - 6.0.0 6.x 5.2.0 - 6.1.0 7.x 7.0.0+ 8.x 8.0.0+ r..
build.gradle repositories { mavenCentral() //example redhat ga maven { url 'https://maven.repository.redhat.com/ga/' } }
View ssl detail log at Client Helpful when you have handshake problems. Run Configuations -> arguments tab -> VM arguments SSL Log arguments: -Djavax.net.debug=ssl:handshake:data:verbose:trustmanager Run Configuations
Menu Project >Properties > Gradle Mac jdk PATH /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home eclipse Gradle Setting **JAVA version need to support at Gralde version https://docs.gradle.org/current/userguide/compatibility.html