feat: initial functional release of Stock Pignon

This commit is contained in:
Lucas
2026-01-14 18:42:53 +01:00
commit 5b8502400a
106 changed files with 2147 additions and 0 deletions

48
app/build.gradle Normal file
View File

@@ -0,0 +1,48 @@
plugins {
id 'com.android.application'
}
android {
namespace 'com.stock.pignon'
compileSdkVersion 36
defaultConfig {
applicationId "com.stock.pignon"
minSdkVersion 17
targetSdkVersion 36
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.2'
// Matériel design
implementation 'com.google.android.material:material:1.6.1'
// JSON
implementation 'com.google.code.gson:gson:2.8.5'
// GIF
implementation 'com.github.bumptech.glide:glide:3.8.0'
// Tests
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}