Skip to content

Commit

Permalink
Updated target sdk to 31
Browse files Browse the repository at this point in the history
Updated target sdk to 31
  • Loading branch information
Stasssm authored Aug 2, 2022
2 parents de7e746 + 21a4419 commit 484a2af
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ task clean(type: Delete) {

ext {
minSdk = 14
targetSdk = 28
targetSdk = 31

appCompatVersion = '1.2.0'
materialVersion = '1.1.0'
appCompatVersion = '1.4.1'
materialVersion = '1.3.0'
jUnitVersion = '4.12'
robolectricVersion = '3.1.2'
}
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 1.5.1

#### Fixed
#### Changes
- updated targetSdkVersion to 31
#### Additions
12 changes: 7 additions & 5 deletions demo/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,18 @@
android:theme="@style/AppTheme"
tools:ignore="AllowBackup,GoogleAppIndexingWarning">

<activity android:name="ru.tinkoff.decoro.demo.MainActivity">
<activity
android:name="ru.tinkoff.decoro.demo.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name="ru.tinkoff.decoro.demo.CustomMaskActivity"/>
<activity android:name="ru.tinkoff.decoro.demo.CustomMaskActivity" />

<activity android:name="ru.tinkoff.decoro.demo.StaticMaskActivity"/>
<activity android:name="ru.tinkoff.decoro.demo.StaticMaskActivity" />

<activity android:name="ru.tinkoff.decoro.demo.SlotBehaviourActivity"/>

Expand Down

0 comments on commit 484a2af

Please sign in to comment.