compileSdkVersion 31
This commit is contained in:
parent
10c5b79938
commit
99efbcad6c
2 changed files with 2 additions and 2 deletions
|
@ -21,5 +21,5 @@ open class CoreModule {
|
||||||
fun provideResources(context: Context, fabricPrivacy: FabricPrivacy): ResourceHelper = ResourceHelperImplementation(context, fabricPrivacy)
|
fun provideResources(context: Context, fabricPrivacy: FabricPrivacy): ResourceHelper = ResourceHelperImplementation(context, fabricPrivacy)
|
||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
fun smsManager() : SmsManager = SmsManager.getDefault()
|
fun smsManager(context: Context) : SmsManager = context.getSystemService(SmsManager::class.java)
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 30
|
compileSdkVersion 31
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 28
|
minSdkVersion 28
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
|
|
Loading…
Reference in a new issue