运行pocketsphix安卓演示时不支持major.minor版本



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

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

为了在IDE中获得演示,请选择签出项目,选择GitHub并输入项目URL:https://github.com/cmusphinx/pocketsphinx-android-demo.

我试着这么做,但发现git.exe不见了,显然我需要安装一些其他软件才能直接从Github 加载这个项目

我试着从这里直接下载github项目的zip文件

我提取了zip文件,并在其中找到了Androidstudio项目文件,但当我尝试加载此项目时,我发现它无法加载,因为它没有grade.properties文件

我从另一个正在工作的Androidstudio项目中复制了gradle.proprties到这个文件夹中。这是我的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演示主机),我会得到:

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程序都运行良好

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

相关内容

  • 没有找到相关文章

最新更新