Skip to content

Commit 9095978

Browse files
committed
build: upgrade AGP to 8.2.2 and targetSdk to 33
1 parent 84d3b80 commit 9095978

34 files changed

+153
-1180
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -256,14 +256,14 @@ in the [changelog](#changelog) or the [Bintray repository](https://bintray.com/p
256256

257257
dependencies {
258258
...
259-
compile 'net.protyposis.android.spectaculum:spectaculum:1.2.0'
260-
compile 'net.protyposis.android.spectaculum:spectaculum-camera:1.2.0'
261-
compile 'net.protyposis.android.spectaculum:spectaculum-image:1.2.0'
262-
compile 'net.protyposis.android.spectaculum:spectaculum-mediaplayer:1.2.0'
263-
compile 'net.protyposis.android.spectaculum:spectaculum-mediaplayerextended:1.2.0'
264-
compile 'net.protyposis.android.spectaculum:spectaculum-effect-flowabs:1.2.0'
265-
compile 'net.protyposis.android.spectaculum:spectaculum-effect-immersive:1.2.0'
266-
compile 'net.protyposis.android.spectaculum:spectaculum-effect-qrmarker:1.2.0'
259+
implementation 'net.protyposis.android.spectaculum:spectaculum:1.2.0'
260+
implementation 'net.protyposis.android.spectaculum:spectaculum-camera:1.2.0'
261+
implementation 'net.protyposis.android.spectaculum:spectaculum-image:1.2.0'
262+
implementation 'net.protyposis.android.spectaculum:spectaculum-mediaplayer:1.2.0'
263+
implementation 'net.protyposis.android.spectaculum:spectaculum-mediaplayerextended:1.2.0'
264+
implementation 'net.protyposis.android.spectaculum:spectaculum-effect-flowabs:1.2.0'
265+
implementation 'net.protyposis.android.spectaculum:spectaculum-effect-immersive:1.2.0'
266+
implementation 'net.protyposis.android.spectaculum:spectaculum-effect-qrmarker:1.2.0'
267267
}
268268

269269

Spectaculum-Camera/Spectaculum-Camera.iml

-111
This file was deleted.

Spectaculum-Camera/build.gradle

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 22
5-
buildToolsVersion "22.0.1"
6-
4+
compileSdk 33
5+
buildFeatures {
6+
buildConfig = true
7+
}
78
defaultConfig {
8-
minSdkVersion 15
9-
targetSdkVersion 22
10-
versionCode libraryVersionCode
11-
versionName libraryVersionName
9+
minSdk 15
10+
targetSdk 33
11+
buildConfigField "String", "VERSION_NAME", "\"${libraryVersionString()}\""
1212
}
1313
buildTypes {
1414
release {
1515
minifyEnabled false
1616
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1717
}
1818
}
19+
namespace 'net.protyposis.android.spectaculum.camera'
1920
}
2021

2122
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
compile project(':Spectaculum-Core')
23+
implementation fileTree(dir: 'libs', include: ['*.jar'])
24+
implementation project(':Spectaculum-Core')
2425
}
2526

2627
//publish {
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="net.protyposis.android.spectaculum.camera">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
</manifest>

0 commit comments

Comments
 (0)