-
Notifications
You must be signed in to change notification settings - Fork 615
Trying to fix issue #72 - Targeting Android 28, with Android Studio 3.2.1 #73
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
Changes from 5 commits
04022b9
60c09b7
a53de6e
8a47cc0
ab2f999
bdc2981
7817a6d
4113607
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,29 @@ | |
|
||
apply plugin: 'com.android.library' | ||
|
||
def androidVersion = 26 | ||
def androidVersion = 28 | ||
|
||
android { | ||
compileSdkVersion androidVersion | ||
defaultConfig { | ||
minSdkVersion 14 | ||
yos1p marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
buildTypes { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These lines look a little suspicious:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
release { | ||
minifyEnabled false | ||
} | ||
debug { | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
dependencies { | ||
testCompile 'junit:junit:4.11' | ||
testCompile 'net.java:quickcheck:0.6' | ||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'net.java:quickcheck:0.6' | ||
testAnnotationProcessor 'net.java:quickcheck-src-generator:0.6' | ||
ashwinraghav marked this conversation as resolved.
Show resolved
Hide resolved
|
||
testAnnotationProcessor 'net.java.quickcheck:quickcheck-src-generator:0.6' | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
<manifest | ||
package="com.google.firebase.database.collection"> | ||
<uses-sdk android:minSdkVersion="9" /> | ||
</manifest> |
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.
@ashwinraghav can you sanity check this?
@iamyaoxi can you explain this change? Is this something to do with the newer gradle plugin?
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.
Yes. I think it's related to the newer Gradle plugin. I tried to use bundle${variantName} task, it always failing. And I read it's already replaced with bundleAar
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.
SGTM
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.
:)
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.
I opened (but already closed) issue #71
The error was: Task with name 'bundleRelease' not found in project ':firebase-common'