-
-
Notifications
You must be signed in to change notification settings - Fork 261
Open Source ParsePush (っ˘▽˘)っ ☁️ #75
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
Conversation
LGTM! 🚢 |
apply plugin: 'com.android.library' | ||
|
||
group = 'com.parse' | ||
version = '1.6.1' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you hardcode the version number, I do not think you still need gradle.properties
.
The two versions are not match, which one is the right one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're totally right. Which come to these questions:
On Android SDK, which one do we update? And which one is the source of truth?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We delete gradle.properties
and use the version number in build.gradle
. The reason is different repos have different versions and release cycles, it does not make sense to have a unify version number.
exclude '**/Manifest.class' | ||
exclude '**/Manifest\$*.class' | ||
exclude '**/BuildConfig.class' | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we only need the jar in release, maybe add
if (name.equals(BuilderConstants.RELEASE)) {
artifacts.add('archives', jarTask);
}
645c7d1
to
bb6d040
Compare
bb6d040
to
5e890b9
Compare
LGTM |
Open Source ParsePush (っ˘▽˘)っ ☁️
Add the closed-source
ParsePush
repo to .NET SDK repo.Test Plan:
./gradlew jarRelease
@grantland, please kindly review all the
gradlew
related stuff.CC: @richardjrossiii, @stanleyw, @nlutsenko, @wangmengyan95
👯
Fixes #74.