Skip to content

Commit

Permalink
fix: deprecate Android 6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
HashEngineering committed Jan 19, 2024
1 parent b958570 commit 1c280b0
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {

defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
vectorDrawables.useSupportLibrary = true

Expand Down
2 changes: 1 addition & 1 deletion features/exploredash/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
android {
defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
2 changes: 1 addition & 1 deletion integrations/coinbase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {

defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion integrations/crowdnode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
android {
defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
2 changes: 1 addition & 1 deletion integrations/uphold/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {

defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion sample-integration-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {

defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
multiDexEnabled true
}
Expand Down
2 changes: 1 addition & 1 deletion wallet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ android {

defaultConfig {
compileSdk 33
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
versionCode project.hasProperty('versionCode') ? project.property('versionCode') as int : 100021
versionName project.hasProperty('versionName') ? project.property('versionName') : "10.0.2"
Expand Down
3 changes: 1 addition & 2 deletions wallet/res/layout/activity_lock_screen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@
android:indeterminate="true"
android:indeterminateTint="@color/dash_white"
android:paddingStart="32dp"
android:paddingEnd="32dp"
tools:targetApi="lollipop" />
android:paddingEnd="32dp" />

<TextView
android:id="@+id/action_subtitle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,10 @@ import android.content.ComponentName
import android.content.Context
import android.content.Intent
import android.content.ServiceConnection
import android.os.Build
import android.os.Handler
import android.os.IBinder
import androidx.annotation.RequiresApi
import org.slf4j.LoggerFactory


@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
class BlockchainSyncJobService : JobService() {

private val log = LoggerFactory.getLogger(BlockchainSyncJobService::class.java)
Expand Down

0 comments on commit 1c280b0

Please sign in to comment.