0

iOS アプリケーションを Android に移植し、J2objc と protobuf を検討しています。これまでのところ、問題に取り組んでいます (Android は初めてで、その多くは学習曲線によるものです)。

この特定の問題は、j2objc-1.0-2.2 の最新バージョンのバグのようです。変換されたオブジェクティブ C 実装クラスの #include はキャメル ケースに変更されていません。誰もこの行動を見たことがありますか?これはバグですか、それとも欠落している設定ですか?

ご協力いただきありがとうございます。

コンパイルエラーは次のとおりです。

GcatMobile/shared/build/j2objcSrcGenMain/com/gcatconsult/shared/remote/NetworkBase.m:14:10: fatal error:
'com/google/common/io/BaseEncoding.h' file not found

#include "com/google/common/io/BaseEncoding.h"

これは、私の翻訳された実装クラスである NetworkBase.m の #includes です。

#include "IOSClass.h"
#include "IOSPrimitiveArray.h"
#include "J2ObjC_source.h"
#include "com/gcatconsult/shared/messages/nano/Resp.h"
#include "com/gcatconsult/shared/remote/NetworkBase.h"
#include "com/google/common/io/BaseEncoding.h"
#include "com/google/protobuf/nano/MessageNano.h"
#include "java/io/BufferedInputStream.h"
#include "java/io/ByteArrayOutputStream.h"
#include "java/io/InputStream.h"
#include "java/io/OutputStream.h"
#include "java/io/PrintStream.h"
#include "java/lang/Exception.h"
#include "java/lang/Integer.h"
#include "java/lang/System.h"
#include "java/net/HttpURLConnection.h"
#include "java/net/MalformedURLException.h"
#include "java/net/URL.h"
#include "java/net/URLConnection.h"
#include "java/util/zip/GZIPOutputStream.h"

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
    skipJ2objcVerification true
    translateClasspaths = ["../../SoftwareDev/NgCalDev/External/j2objc-1.0-2.2/lib/guava-19.0.jar"]
    translateArgs '--prefixes', 'src/main/resources/prefixes.properties'
//    testMinExpectedTests 0

    // Omit these two lines if you don't configure your Xcode project with CocoaPods
//    xcodeProjectDir '../../NGCalDev/AuthTouchId'  //  suggested directory name
//    xcodeTargetsIos 'IOS-APP', 'IOS-APPTests'  // replace with your iOS targets

    finalConfigure()          // Must be last call to configuration
}

J2objc 1.0-2.2、Xcode の最新バージョン: バージョン 7.3 (7D175)、および OS X El Capitan バージョン 10.11.4 を使用しています。

4

1 に答える 1

0

Guava はその API を Java 8 にアップグレードする過程にあるため、開発者は異なるバージョンの Guava を含める方法を必要としています。したがって、Guava インクルードは /include/guava/ に移動されたため、そのパスをヘッダー検索パスに追加する必要があります。

于 2016-04-06T14:16:45.557 に答える