0

我正在尝试在 android 中运行Pocketsphinx 演示程序

教程告诉我们直接从 Github 加载项目

为了在IDE中获取demo,请选择从VCS签出一个项目,选择GitHub并输入项目URL: https ://github.com/cmusphinx/pocketsphinx-android-demo 。

我试图这样做,但发现它git.exe丢失了,显然我需要安装一些其他软件才能直接从 Github 加载这个项目

我尝试从这里直接以 zip 文件下载 github 项目

我解压了zip文件,在里面找到了Androidstudio项目文件,但是当我尝试加载这个项目的时候发现它加载不出来,因为它没有gradle.properties文件

gradle.proprties从另一个正在工作的 Androidstudio 项目中复制到此文件夹中。这是我的gradle.properties文件的内容:

# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
org.gradle.jvmargs=-XX\:MaxHeapSize\=256m -Xmx256m  

但是,现在当我加载项目时,我收到了这个错误:

错误:(1, 0) 原因:com/android/build/gradle/AppPlugin:不支持的 major.minor 版本 52.0

如果我在 IDE 中双击 build.gradle(项目:pocket-sphinx-demo-master),这就是我得到的:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"

    defaultConfig {
        applicationId "edu.cmu.sphinx.pocketsphinx"
        minSdkVersion 14
        targetSdkVersion 24
        versionCode 2
        versionName "1.1"
    }
}

dependencies {
    compile project(':aars')
    compile project(':models')
    compile 'com.android.support:appcompat-v7:25.2.0'
}

我该如何摆脱这个错误?pocketsphinx 演示程序是否预设为仅适用于与我所拥有的不同版本的 Androidstudio?如果是这样,我如何找出哪一个,是否可以将其设置为与我当前的版本一起使用?我认为这不是我的 Androidstudio 安装的问题,因为我所有其他 android 程序都运行良好

4

1 回答 1

0

你可以试试这个更容易使用的库(RapidSphinx)。只需将此库添加到您的应用程序中build.gradle,而无需处理 Pocketsphinx 资产和配置。

于 2018-01-09T16:24:41.413 回答