-
Notifications
You must be signed in to change notification settings - Fork 8
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
Specify export flag for Context-based receiver #72
Changes from all commits
41f121d
29fc643
1c1564e
0d90374
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 |
---|---|---|
|
@@ -7,10 +7,11 @@ buildscript { | |
repositories { | ||
mavenCentral() | ||
google() | ||
gradlePluginPortal() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:4.2.2' | ||
classpath 'com.akaita.android:easylauncher:1.3.1' | ||
classpath 'com.android.tools.build:gradle:7.4.2' | ||
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. To use Android SDK 33 |
||
classpath 'com.project.starter:easylauncher:5.0.1' | ||
} | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4,11 +4,11 @@ apply plugin: 'maven-publish' | |||||
version = rootProject.ext.releaseVersion | ||||||
|
||||||
android { | ||||||
compileSdkVersion 29 | ||||||
compileSdkVersion 33 | ||||||
|
||||||
defaultConfig { | ||||||
minSdkVersion 14 | ||||||
targetSdkVersion 29 | ||||||
targetSdkVersion 33 | ||||||
versionCode 1 | ||||||
versionName project.version | ||||||
manifestPlaceholders = [sdkVersion:"4"] | ||||||
|
@@ -40,11 +40,11 @@ android { | |||||
} | ||||||
|
||||||
dependencies { | ||||||
testImplementation 'androidx.test:runner:1.2.0' | ||||||
testImplementation 'androidx.test.ext:junit:1.1.1' | ||||||
testImplementation 'org.robolectric:robolectric:4.3.1' | ||||||
testImplementation 'androidx.test:runner:1.5.2' | ||||||
testImplementation 'androidx.test.ext:junit:1.1.5' | ||||||
testImplementation 'org.robolectric:robolectric:4.10.3' | ||||||
|
||||||
testImplementation 'androidx.test:rules:1.2.0' | ||||||
testImplementation 'androidx.test:rules:1.5.0' | ||||||
testImplementation 'com.google.truth:truth:1.0' | ||||||
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. truth:1.1.4 is now available. how about it updating?
Suggested change
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. @satsukies 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. @jmatsu |
||||||
} | ||||||
|
||||||
|
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.
MaxPermSize is no longer valid for JVM 9 or later