Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
yzzzd committed Nov 10, 2022
1 parent 0ecca7b commit ae9b949
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ plugins {
}

android {
compileSdk 32
compileSdk 33

defaultConfig {
applicationId "com.nuryazid.androidcore"
minSdk 23
targetSdk 32
targetSdk 33
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -46,6 +46,7 @@ android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
namespace 'com.nuryazid.androidcore'
}

dependencies {
Expand All @@ -57,7 +58,7 @@ dependencies {
kapt 'com.github.bumptech.glide:compiler:4.12.0'
kapt 'androidx.room:room-compiler:2.4.3'

testImplementation 'junit:junit:4.+'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nuryazid.androidcore">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.40.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
9 changes: 5 additions & 4 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ plugins {
}

android {
compileSdk 32
compileSdk 33

defaultConfig {
minSdk 23
targetSdk 32
targetSdk 33

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand All @@ -37,6 +37,7 @@ android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
namespace 'com.crocodic.core'
}

//apply from: '../publish_local.gradle'
Expand All @@ -46,7 +47,7 @@ dependencies {
/* Basic Android */
api 'androidx.appcompat:appcompat:1.5.1'
api 'androidx.constraintlayout:constraintlayout:2.1.4'
api 'androidx.core:core-ktx:1.8.0'
api 'androidx.core:core-ktx:1.9.0'
api 'androidx.exifinterface:exifinterface:1.3.5'
api 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
api 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
Expand Down Expand Up @@ -110,7 +111,7 @@ afterEvaluate {
from components.release
groupId = 'com.github.crocodic-studio'
artifactId = 'AndroidCoreProject'
version = '4.0.6'
version = '4.0.7'
}
}
}
Expand Down
3 changes: 1 addition & 2 deletions core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.crocodic.core">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
Expand Down

0 comments on commit ae9b949

Please sign in to comment.