-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
更改app/build.gradle文件后编译成功 #314
Comments
十分感谢,弄了好久,之前一直卡在Crashlytics found an invalid API key: null,现在终于能编译了 |
兄台高见,给你点个赞! |
自己集成的百度语音版阅读,大家可以测试一下 |
据我测试,注释掉 apply plugin: 'io.fabric' debug和release里两个 signingConfig signingConfigs.myConfig 还有 apply plugin: 'com.google.gms.google-services' 应该就可以了 |
Closed
This was referenced Dec 23, 2019
Closed
大侠用的是哪个版本的环境编译成功的?APK试用了,效果非常好。很喜欢这个语音效果,能否分享一下代码?[email protected],多谢! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
更改app/build.gradle文件,代码如下
(以此记录帮助后人,也感谢作者提供那么好的开源阅读APP)
(目前想自己合成百度语音功能,现在的朗读体验不太好)
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'org.greenrobot.greendao'
// apply plugin: 'io.fabric'
static def releaseTime() {
return new Date().format("yy.MMddHH", TimeZone.getTimeZone("GMT+8"))
}
def name = "YueDu"
def version = "2." + releaseTime()
def gitCommits = Integer.parseInt('git rev-list --count HEAD'.execute([], project.rootDir).text.trim())
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
}
dependencies {
testImplementation 'junit:junit:4.13-beta-3'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':basemvplib')
}
greendao {
schemaVersion 63
daoPackage 'com.kunfei.bookshelf.dao'
targetGenDir 'src/main/java'
}
// apply plugin: 'com.google.gms.google-services'
repositories {
mavenCentral()
}
The text was updated successfully, but these errors were encountered: