我正在尝试设置我的第一个解析项目,但进展不太顺利。我认为这应该是非常直接的,但我仍然有问题,而且目前在youtube上没有我能找到的教程。我为它找到的最新教程已有3年历史了。
我试着按照这里的说明:
https://docs.parseplatform.org/android/guide/#installation
我试过两种方法。
1) 我已经在这里从github下载了解析项目:
https://github.com/parse-community/Parse-SDK-Android
下载这个项目附带了很多额外的功能,比如fcm、gcm和ktx的文件夹。然而,解析文件夹也附带了大量的类。
我一直在学习教程,这些教程为我提供了一个已经设置好的模板解析项目,但我相信这对安卓工作室2.2来说很重要(我目前正在运行3.3)。当我尝试升级文件时,它会给我带来大量的兼容性错误。
如果有人对如何解决这个问题有任何建议,我将不胜感激。以下是我尝试过的:
我已经按照上面链接中的说明进行了操作,但是我得到了这个错误:
Could not find method implementation() for
arguments [com.github.parse-community.Parse-SDK-Android:parse:1.18.5] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
我不明白的是说明书要求我这么做。
2) 我尝试过的第二种方法是,我在android中创建了一个新项目,但在这一行仍然会遇到同样的错误。
这是我尝试过的方法的等级文件:
通道编号1)
buildscript {
ext.kotlin_version = '1.2.71'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
implementation "com.github.parse-community.Parse-SDK-Android:parse:1.18.5"
}
}
plugins {
id 'com.github.ben-manes.versions' version '0.20.0'
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 27
supportLibVersion = '27.1.1'
firebaseJobdispatcherVersion = '0.8.5'
minSdkVersion = 14
targetSdkVersion = 27
}
AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.parse">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name="App"></application>
<application />
</manifest>
通道编号2)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
implementation "com.github.parse-community.Parse-SDK-Android:parse:1.18.5"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.parsetemplate">
<application
android:name="App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
当我遵循解析README.MD 时,我得到了同样的错误
您只需要删除当前项目并开始新项目,然后按照以下指南进行操作。
https://www.back4app.com/docs/android/parse-android-sdk
您需要复制完整的存储库块,它位于build.gradle(Project: your_project_name)
的allprojects块内,并将其粘贴在build.gradle(模块:应用程序)文件的末尾。
完成后,您应该重新构建您的项目一次。