当前位置: 首页 > 知识库问答 >
问题:

Protobuf android NDK

鄢雅畅
2023-03-14

我正在尝试使用android studio构建Protobuf2.6.1NDK,但我不知道如何将protobuf包含在gradle文件中。我也尝试过android.mk和eclipse中的任何一个,请帮助我。

    LOCAL_PATH := $(call my-dir)
    include $(CLEAR_VARS)

    LOCAL_MODULE    := libprotobuf

    LOCAL_SRC_FILES :=\
    src/google/protobuf/descriptor_database.cc \
    src/google/protobuf/descriptor.cc \
    src/google/protobuf/descriptor.pb.cc \
    src/google/protobuf/dynamic_message.cc \
    src/google/protobuf/extension_set_heavy.cc \
    src/google/protobuf/extension_set.cc \
    src/google/protobuf/generated_message_reflection.cc \
    src/google/protobuf/generated_message_util.cc \
    src/google/protobuf/io/coded_stream.cc \
    src/google/protobuf/io/gzip_stream.cc \
    src/google/protobuf/io/printer.cc \
    src/google/protobuf/io/strtod.cc \
    src/google/protobuf/io/tokenizer.cc \
    src/google/protobuf/io/zero_copy_stream_impl_lite.cc \
    src/google/protobuf/io/zero_copy_stream_impl.cc \
    src/google/protobuf/io/zero_copy_stream.cc \
    src/google/protobuf/message_lite.cc \
    src/google/protobuf/message.cc \
    src/google/protobuf/reflection_ops.cc \
    src/google/protobuf/repeated_field.cc \
    src/google/protobuf/stubs/common.cc \
    src/google/protobuf/stubs/once.cc \
    src/google/protobuf/stubs/stringprintf.cc \
    src/google/protobuf/stubs/structurally_valid.cc \
    src/google/protobuf/stubs/strutil.cc \
    src/google/protobuf/stubs/substitute.cc \
    src/google/protobuf/text_format.cc \
    src/google/protobuf/unknown_field_set.cc \
    src/google/protobuf/wire_format_lite.cc \
    src/google/protobuf/wire_format.cc

    ifeq ($(TARGET_ARCH),x86)
    LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) \
    src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc

    endif

    LOCAL_CFLAGS := -D GOOGLE_PROTOBUF_NO_RTTI=1
    LOCAL_CPPFLAGS := -std=c++11
    LOCAL_C_INCLUDES = $(LOCAL_PATH)/src

    LOCAL_EXPORT_LDLIBS := -lz
    LOCAL_EXPORT_CFLAGS := $(LOCAL_CFLAGS)
    LOCAL_EXPORT_CPPFLAGS := $(LOCAL_CPPFLAGS)
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)

    include $(BUILD_STATIC_LIBRARY)

共有1个答案

柯波
2023-03-14

我在我的项目中添加了新模块,并将其命名为Proto。这是我的分级文件:

apply plugin: 'protobuf'

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'ws.antonov.gradle.plugins:gradle-plugin-protobuf:0.9.1'
    }
}

dependencies {
    compile 'com.google.protobuf:protobuf-java:2.6.0'
}

protocPath = 'C:/Users/Paul/proto/protoc'
extractedProtosDir = "${project.buildDir.path}/extracted-protos"
generatedFileDir = "${projectDir}/src/main/java"
//protobufCodeGenPlugins = ['foo:./protoc-gen-foo', 'bar']

dependencies {
    // If you have your protos archived in a tar file, you can specify that as a dependency
    //   ... alternative archive types supported are: jar, tar, tar.gz, tar.bz2, zip
    protobuf files("src/main/protos/dungeon.proto")
    // Different configuration fileSets are supported
    //testProtobuf files("src/main/java")
}

然后在我的应用程序build.gradle中添加了编译项目(':proto')

最后,在我的设置中,gradle我有包括':app'、':proto'

希望有帮助

 类似资料:

相关问答

相关文章

相关阅读