Skip to content
This repository was archived by the owner on Feb 14, 2020. It is now read-only.

Commit 394cacb

Browse files
committed
Ship with docs
1 parent 49e194f commit 394cacb

File tree

9 files changed

+22
-12
lines changed

9 files changed

+22
-12
lines changed

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ buildscript {
66
dependencies {
77
classpath 'com.android.tools.build:gradle:3.1.3'
88
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
9+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
910
}
1011
}
1112

@@ -19,3 +20,7 @@ allprojects {
1920
jcenter()
2021
}
2122
}
23+
24+
task clean(type: Delete) {
25+
delete rootProject.buildDir
26+
}

library/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,5 @@ apply plugin: 'com.github.kt3k.coveralls'
7171
coveralls.jacocoReportPath = "${buildDir}/reports/jacoco/jacocoTestReport/jacocoTestReport.xml"
7272

7373
//endregion
74+
75+
apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'

library/src/main/java/com/parse/twitter/ParseTwitterUtils.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
9-
package com.parse;
9+
package com.parse.twitter;
1010

1111
import android.content.Context;
1212

13-
import com.parse.twitter.Twitter;
13+
import com.parse.AuthenticationCallback;
14+
import com.parse.LogInCallback;
15+
import com.parse.ParseException;
16+
import com.parse.ParseUser;
17+
import com.parse.SaveCallback;
1418

1519
import java.util.Map;
1620
import java.util.concurrent.CancellationException;

library/src/main/java/com/parse/twitter/TwitterController.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
9-
package com.parse;
9+
package com.parse.twitter;
1010

1111
import android.content.Context;
1212

13-
import com.parse.twitter.AsyncCallback;
14-
import com.parse.twitter.Twitter;
13+
import com.parse.ParseException;
1514

1615
import java.util.HashMap;
1716
import java.util.Map;

library/src/main/java/com/parse/twitter/gdata/PercentEscaper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616

17-
package com.parse.internal.gdata;
17+
package com.parse.twitter.gdata;
1818

1919
/**
2020
* A {@code UnicodeEscaper} that escapes some set of Java characters using

library/src/main/java/com/parse/twitter/oauth/OAuth1FlowDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
9-
package com.parse.oauth;
9+
package com.parse.twitter.oauth;
1010

1111
import android.app.ProgressDialog;
1212
import android.content.Context;

library/src/main/java/com/parse/twitter/oauth/OAuth1FlowException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
9-
package com.parse.oauth;
9+
package com.parse.twitter.oauth;
1010

1111
/**
1212
* For internal use.

library/src/test/java/com/parse/twitter/ParseTwitterUtilsTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
9-
package com.parse;
9+
package com.parse.twitter;
1010

1111
import android.content.Context;
1212

13-
import com.parse.twitter.ParseTwitterUtils;
14-
import com.parse.twitter.TwitterController;
13+
import com.parse.AuthenticationCallback;
14+
import com.parse.ParseUser;
1515

1616
import org.junit.After;
1717
import org.junit.Before;

library/src/test/java/com/parse/twitter/TwitterControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
9-
package com.parse;
9+
package com.parse.twitter;
1010

1111
import android.content.Context;
1212

0 commit comments

Comments
 (0)