0

我对 Android 和 j2objc 比较陌生,希望这个问题有一个简单的解决方法。我创建了一个简单的项目来测试 Android 中的 protobuf nano 并转换为目标 c。该应用程序在 Java 中运行良好,向 C# Web 服务发送消息,但在目标 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
}

这是其中一张照片文件:

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

任何帮助将不胜感激。

4

1 回答 1

1

您需要升级到 J2ObjC 的最新版本1.0.2,因为它的 J2ObjC_header.h 不再使用 __weak 属性。此处描述了对这个较新版本的 Gradle 配置的更改。

于 2016-04-05T17:25:08.967 回答