Skip to content

Commit

Permalink
Merge pull request #21 from RashadTanjim/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
RashadTanjim committed Nov 24, 2021
2 parents 7a059ac + 705f657 commit 29c6aab
Show file tree
Hide file tree
Showing 16 changed files with 28 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@
local.properties
/.idea/vcs.xml
/.idea/misc.xml

rashadtanjim_gallery.jks
Binary file added Documentation/Screenshots/1637708882516.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documentation/app-debug-0.1.0.apk
Binary file not shown.
Binary file added Documentation/app-release-0.1.0.aab
Binary file not shown.
Binary file added Documentation/app-release-0.1.0.apk
Binary file not shown.
29 changes: 26 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,33 +20,56 @@ android {
versionCode 1
versionName "0.1.0"

def buildDateStamp = new Date().format("MMMM dd, yyyy")
buildConfigField "String", "LAST_BUILD_DATE", "\"$buildDateStamp\""

vectorDrawables.useSupportLibrary = true

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

signingConfigs {
release {
storeFile file('../rashadtanjim_gallery.jks')
storePassword 'rashadtanjim_gallery'
keyAlias 'rashadtanjim_gallery'
keyPassword 'rashadtanjim_gallery'
}
}

buildTypes {
debug {
testCoverageEnabled true
}
release {
minifyEnabled false
minifyEnabled true
shrinkResources = true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}

buildFeatures {
viewBinding true
}

androidExtensions {
features = ["parcelize"]
}

lintOptions {
disable "UnsafeExperimentalUsageError", "UnsafeExperimentalUsageWarning"
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}

Expand Down Expand Up @@ -79,7 +102,7 @@ dependencies {
implementation "com.google.code.gson:gson:$gson_version"
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
implementation "com.squareup.okhttp3:logging-interceptor:4.9.1"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2"

// Hilt-Draggier for Dependency Injection
implementation "com.google.dagger:hilt-android:$hilt_version"
Expand Down

0 comments on commit 29c6aab

Please sign in to comment.