I was in the same situation trying to integrate Parse 1.8 with Android Studio 1.0.2.
On the Parse instructions page, he simply asks you to import the library into Android studio, which is not too detailed. This is how I solved this problem.
- Select to import from the "Non Android Studio Project" immediately after launching Android Studio.
- When it asks you to select a project, specify the path in Windows, for example, C: / path / to / parsesdk /. On * nix systems, this should be where you extracted it, / home / user / path / to / parsesdk.
- After choosing the path, Android Studio will import the project accordingly.
- Click the root folder of the application (in the upper folder in the folder hierarchy on the left), right-click> New> Package> and add it to the src folder, the name is libs.
- Copy the jar bundle to the libs folder (I just copied the jar file since I do not need other additional material)
- , , " " , .
Android Studio build.gradle.
compile files('src/libs/Parse-1.8.0.jar')
- , "" > " ".
"", "" .
- "+" > " "
- .
, build.gradle "ParseStarterProject", ,
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
}
.
, :)