Skip to content

Commit

Permalink
Merge pull request #169 from ptkNktq/develop
Browse files Browse the repository at this point in the history
🎉 Release v1.1
  • Loading branch information
ptkNktq authored Jun 5, 2024
2 parents 8384063 + c83de76 commit 162a851
Show file tree
Hide file tree
Showing 160 changed files with 2,606 additions and 2,429 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand Down
19 changes: 10 additions & 9 deletions AndroidApp/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### 手動で追加
# 署名関係
*.jks
*.keystore
*.pepk

.idea/androidTestResultsUserPreferences.xml
app/release/output-metadata.json

### 自動で追加
# Created by https://www.toptal.com/developers/gitignore/api/android,androidstudio
# Edit at https://www.toptal.com/developers/gitignore?templates=android,androidstudio

Expand Down Expand Up @@ -54,11 +64,6 @@ captures/
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/
Expand Down Expand Up @@ -128,10 +133,6 @@ output.json
*~
*.swp

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
# google-services.json

Expand Down
10 changes: 10 additions & 0 deletions AndroidApp/.idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion AndroidApp/.idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions AndroidApp/.idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 2 additions & 33 deletions AndroidApp/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,56 +1,25 @@
plugins {
id("com.android.application")
id("kotlin-android")
id("com.cookpad.android.plugin.license-tools")
id("common.android")
}

android {
namespace = "me.nya_n.notificationnotifier"
compileSdk = Versions.COMPILE_SDK
buildToolsVersion = "30.0.3"

defaultConfig {
applicationId = "me.nya_n.notificationnotifier"
minSdk = Versions.MIN_SDK
targetSdk = Versions.TARGET_SDK
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}

compileOptions {
sourceCompatibility = Versions.JAVA_VERSION
targetCompatibility = Versions.JAVA_VERSION
}

kotlinOptions {
jvmTarget = Versions.JVM_TARGET
}

packaging {
resources.excludes.add("META-INF/DEPENDENCIES")
}
}

dependencies {
implementation(libs.org.jetbrains.kotlin.stdlib)
implementation(project(":ui"))
// diのために必要
implementation(project(":domain"))
implementation(project(":data:repository"))

// その他
implementation(libs.io.insert.koin)
implementation(libs.com.squareup.leakcanary.android)
debugImplementation(libs.com.squareup.leakcanary.android)
}
7 changes: 3 additions & 4 deletions AndroidApp/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme.SplashScreen">

<activity
android:name="me.nya_n.notificationnotifier.ui.screen.MainActivity"
android:exported="true"
android:theme="@style/AppTheme.NoActionBar">
android:name="me.nya_n.notificationnotifier.ui.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down
Loading

0 comments on commit 162a851

Please sign in to comment.