Skip to content
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

bump target API level to 33 #826

Merged
merged 2 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ group = GROUP
version = VERSION_NAME

android {
compileSdkVersion 31
compileSdkVersion 33

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
Expand All @@ -30,11 +30,10 @@ android {

defaultConfig {
minSdkVersion 14
targetSdkVersion 31
targetSdkVersion 33
multiDexEnabled true
testApplicationId "com.mixpanel.android.mpmetrics"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

consumerProguardFiles 'proguard.txt'

buildConfigField "String", "MIXPANEL_VERSION", "\"${version}\""
Expand All @@ -50,6 +49,8 @@ android {
testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
}


}
buildTypes {
debug{
Expand Down Expand Up @@ -91,7 +92,6 @@ dependencies {
androidTestImplementation "org.mockito:mockito-android:2.25.1"
androidTestUtil 'androidx.test:orchestrator:1.4.0'
testImplementation "org.mockito:mockito-core:2.25.1"

}

apply from: rootProject.file('maven.gradle')
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=7.3.3
VERSION_NAME=7.3.4-SNAPSHOT

POM_PACKAGING=aar
GROUP=com.mixpanel.android
Expand Down
Loading