Skip to content

Commit ae9b949

Browse files
committed
bump version
1 parent 0ecca7b commit ae9b949

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

app/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ plugins {
99
}
1010

1111
android {
12-
compileSdk 32
12+
compileSdk 33
1313

1414
defaultConfig {
1515
applicationId "com.nuryazid.androidcore"
1616
minSdk 23
17-
targetSdk 32
17+
targetSdk 33
1818
versionCode 1
1919
versionName "1.0"
2020

@@ -46,6 +46,7 @@ android {
4646
packagingOptions {
4747
exclude 'META-INF/DEPENDENCIES'
4848
}
49+
namespace 'com.nuryazid.androidcore'
4950
}
5051

5152
dependencies {
@@ -57,7 +58,7 @@ dependencies {
5758
kapt 'com.github.bumptech.glide:compiler:4.12.0'
5859
kapt 'androidx.room:room-compiler:2.4.3'
5960

60-
testImplementation 'junit:junit:4.+'
61+
testImplementation 'junit:junit:4.13.2'
6162
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
6263
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
6364
}

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.nuryazid.androidcore">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
65
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
dependencies {
4-
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'
4+
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.40.1'
55
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
66
// NOTE: Do not place your application dependencies here; they belong
77
// in the individual module build.gradle files

core/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ plugins {
77
}
88

99
android {
10-
compileSdk 32
10+
compileSdk 33
1111

1212
defaultConfig {
1313
minSdk 23
14-
targetSdk 32
14+
targetSdk 33
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
consumerProguardFiles "consumer-rules.pro"
@@ -37,6 +37,7 @@ android {
3737
packagingOptions {
3838
exclude 'META-INF/DEPENDENCIES'
3939
}
40+
namespace 'com.crocodic.core'
4041
}
4142

4243
//apply from: '../publish_local.gradle'
@@ -46,7 +47,7 @@ dependencies {
4647
/* Basic Android */
4748
api 'androidx.appcompat:appcompat:1.5.1'
4849
api 'androidx.constraintlayout:constraintlayout:2.1.4'
49-
api 'androidx.core:core-ktx:1.8.0'
50+
api 'androidx.core:core-ktx:1.9.0'
5051
api 'androidx.exifinterface:exifinterface:1.3.5'
5152
api 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
5253
api 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
@@ -110,7 +111,7 @@ afterEvaluate {
110111
from components.release
111112
groupId = 'com.github.crocodic-studio'
112113
artifactId = 'AndroidCoreProject'
113-
version = '4.0.6'
114+
version = '4.0.7'
114115
}
115116
}
116117
}

core/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.crocodic.core">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65
<uses-permission android:name="android.permission.VIBRATE" />

0 commit comments

Comments
 (0)