私は Android と j2objc に比較的慣れていないので、この問題が簡単に修正されることを願っています。Android で protobuf nano をテストし、目的 c に変換する簡単なプロジェクトを作成しました。アプリは C# Web サービスにメッセージを送信する Java で正常に動作しますが、目的 c で変換された javanano クラスのコンパイルは次のエラーで失敗します。
j2objc-0.9.8.2.1/include/J2ObjC_header.h:25:17: error: cannot create __weak reference in file using manual reference counting
id JreStrAppend(__weak id *lhs, const char *types, ...);
build.gradle ファイルは次のとおりです。
plugins {
id 'java'
id "com.github.j2objccontrib.j2objcgradle" version "0.6.0-alpha"
id "com.google.protobuf" version "0.7.5"
}
sourceSets {
main.java.srcDirs += 'src/main/javanano'
}
dependencies {
// Any libraries you depend on, like Guava or JUnit
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.guava:guava:19.0'
compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-5'
testCompile 'junit:junit:4.12'
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.0.0-beta-2"
}
generateProtoTasks {
all().each { task ->
task.builtins {
remove java
javanano {
option 'java_multiple_files=true'
option 'ignore_services=true'
}
}
}
}
generatedFilesBaseDir = "$projectDir/src"
}
// Plugin settings; put these at the bottom of the file.
j2objcConfig {
// Sets up libraries you depend on
autoConfigureDeps true
// testMinExpectedTests 0
// Omit these two lines if you don't configure your Xcode project with CocoaPods
// xcodeProjectDir '/Users/gabrielchoza/SoftwareDev/NGCalDev/AuthTouchId' // suggested directory name
// xcodeTargetsIos 'IOS-APP', 'IOS-APPTests' // replace with your iOS targets
finalConfigure() // Must be last call to configuration
}
そして、ここに写真ファイルの1つがあります:
syntax = "proto3";
option csharp_namespace = "messages";
option java_package = "messages";
message Req {
string client_version = 1;
string client_practice = 2;
string instance_id = 3;
}
Xcode の最新バージョンを使用しています: バージョン 7.3 (7D175)、および OS X El Capitan バージョン 10.11.4
どんな助けでも大歓迎です。