parse-community/Parse-SDK-Android là dự án Java với 1.9k sao trong nhóm Mobile. The Android SDK for Parse Platform
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
A library that gives you access to the powerful Parse Server backend from your Android app. For more information about Parse and its features, see the website, getting started, and blog.
Getting Started
Compatibility
Add Dependency
Setup
Contributing
More Parse Android Projects
Getting Started
Compatibility
The Parse Android SDK has the following Android API and Gradle Plugin compatibility.
SDK version
Minimum API level
Targeting API level
Gradle Plugin
1.26
< API 16
API 29
3.6.2
2.0
>= API 16
API 30
4.2.2
2.1
>= API 21
API 31
7.0.3
Add Dependency
Add the line maven { url 'https://www.jitpack.io' } to your settings.gradle file, inside the repositories property, for example:
Older versions of Android studio require different steps. See the following list of Android Studio versions for alternative instructions. You can find the version of your Android Studio installation by clicking on Help > About in the top menu.
Arctic Fox | 2020.3.1 or older
Add this in your root build.gradle file, not your module build.gradle file:
Then, add the library to your project build.gradle file.
Then, add the library to your (module:app) build.gradle file, replacing latest.version.here with the version of the Parse Android SDK you would like to use. We commend always updating your app to use the latest release version.
ext {
parseVersion = "latest.version.here"
}
dependencies {
implementation "com.github.parse-community.Parse-SDK-Android:parse:$parseVersion"
// for Google login/signup support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:google:$parseVersion"
// for Facebook login/signup support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:facebook:$parseVersion"
// for Twitter login/signup support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:twitter:$parseVersion"
// for FCM Push support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:fcm:$parseVersion"
// for Kotlin extensions support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:ktx:$parseVersion"
// for Kotlin coroutines support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:coroutines:$parseVersion"
// for RxJava support (optional)
implementation "com.github.parse-community.Parse-SDK-Android:rxjava:$parseVersion"
}
Setup
Initialize Parse in a custom class that extends Application:
import com.parse.Parse;
import android.app.Application;
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(new Parse.Configuration.Builder(this)
.applicationId("YOUR_APP_ID")
// if desired
.clientKey("YOUR_CLIENT_KEY")
.server("https://your-server-address/parse/")
.build()
);
}
}
The custom Application class must be registered in AndroidManifest.xml:
Note that if you are testing with a server using http, you will need to add android:usesCleartextTraffic="true" to your above <application> definition, but you should only do this while testing and should use https for your final product.
See the guide for the rest of the SDK usage.
Contributing
We want to make contributing to this project as easy and transparent as possible. Please refer to the Contribution Guidelines.
More Parse Android Projects
These are other official libraries we made that can help you create your Parse app.
ParseGoogleUtils - Google login/signup.
ParseFacebookUtils - Facebook login/signup.
ParseTwitterUtils - Twitter login/signup.
Parse FCM - Firebase Cloud Messaging support for sending push notifications.
Parse KTX - Kotlin extensions for ease of developer use.
Parse Coroutines - Kotlin Coroutines support for various Parse async operations
Parse RxJava - Transform Parse Tasks to RxJava Completables and Singles
ParseLiveQuery - Realtime query subscription.
ParseUI - Prebuilt UI elements.
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
parse-community/Parse-SDK-Android thuộc nhóm Mobile trên TopGit, cùng 6 topic GitHub. Trang Trending và Topics liệt kê các repo cùng số sao và cùng ngôn ngữ để so sánh.
Đọc thêm về parse-community/Parse-SDK-Android ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/parse-community/Parse-SDK-Android là nguồn chính thức.
parse-community/Parse-SDK-Android có phải mã nguồn mở không?
TopGit chưa ghi nhận license cho parse-community/Parse-SDK-Android. Phần lớn repo public trên GitHub là mã nguồn mở, nhưng điều khoản khác nhau từng repo — mở file LICENSE để xác nhận.
parse-community/Parse-SDK-Android có trang demo không?
Dự án có trang chủ ở https://parseplatform.org/. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
parse-community/Parse-SDK-Android là gì?
parse-community/Parse-SDK-Android (parse-community/Parse-SDK-Android) là dự án Java trên GitHub. Theo mô tả gốc: The Android SDK for Parse Platform
Vì sao parse-community/Parse-SDK-Android được xếp vào nhóm Mobile?
TopGit xếp parse-community/Parse-SDK-Android vào nhóm Mobile dựa trên GitHub topics và mô tả của repo (gắn thẻ: "android", "hacktoberfest", "parse"). Việc phân loại dựa trên metadata thật của repo, không phải đoán theo cảm tính biên tập.
Đọc đầy đủ README ở tab phía trên.
Parse-SDK-Android có đáng để bạn bỏ thời gian?
ChatGPT, Claude và Perplexity đều đọc được trang này. Hỏi thử xem họ nghĩ gì về Parse-SDK-Android.