This repository has been archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
157 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
* text=auto eol=lf | ||
*.bat text eol=crlf | ||
*.jar binary | ||
*.jks binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/.gradle | ||
/.gradle/ | ||
/local.properties | ||
/.idea | ||
/app/**/build/ | ||
/.idea/ | ||
build/ | ||
/release.jks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
plugins { | ||
id 'com.android.application' | ||
} | ||
|
||
android { | ||
compileSdk 33 | ||
buildToolsVersion "30.0.3" | ||
|
||
defaultConfig { | ||
applicationId 'jp.co.benesse.dcha.setupwizard' | ||
minSdk 24 | ||
//noinspection ExpiredTargetSdkVersion | ||
targetSdk 24 | ||
versionCode 1 | ||
versionName "1.0.0" | ||
proguardFiles += 'proguard-rules.pro' | ||
} | ||
|
||
signingConfigs { | ||
android { | ||
storeFile rootProject.file('android.jks') | ||
storePassword 'android' | ||
keyAlias 'android' | ||
keyPassword 'android' | ||
} | ||
release { | ||
storeFile rootProject.file('release.jks') | ||
storePassword System.getenv('STORE_PASSWORD') | ||
keyAlias System.getenv('KEY_ALIAS') | ||
keyPassword System.getenv('KEY_PASSWORD') | ||
} | ||
} | ||
|
||
buildTypes { | ||
debug { | ||
minifyEnabled false | ||
signingConfig signingConfigs.android | ||
} | ||
release { | ||
minifyEnabled true | ||
shrinkResources true | ||
signingConfig signingConfigs.android | ||
if (rootProject.file('release.jks').exists()) { | ||
signingConfig signingConfigs.release | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-ignorewarnings |
4 changes: 3 additions & 1 deletion
4
...aSetupWizard/src/main/AndroidManifest.xml → DchaSetupWizard/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
plugins { | ||
id 'com.android.application' | ||
} | ||
|
||
android { | ||
compileSdk 34 | ||
buildToolsVersion "30.0.3" | ||
|
||
defaultConfig { | ||
applicationId 'com.panasonic.sanyo.ts.firmwareupdate' | ||
minSdk 24 | ||
//noinspection ExpiredTargetSdkVersion | ||
targetSdk 24 | ||
versionCode 1 | ||
versionName "1.0.0" | ||
proguardFiles += 'proguard-rules.pro' | ||
} | ||
|
||
signingConfigs { | ||
android { | ||
storeFile rootProject.file('android.jks') | ||
storePassword 'android' | ||
keyAlias 'android' | ||
keyPassword 'android' | ||
} | ||
release { | ||
storeFile rootProject.file('release.jks') | ||
storePassword System.getenv('STORE_PASSWORD') | ||
keyAlias System.getenv('KEY_ALIAS') | ||
keyPassword System.getenv('KEY_PASSWORD') | ||
} | ||
} | ||
|
||
buildTypes { | ||
debug { | ||
minifyEnabled false | ||
signingConfig signingConfigs.android | ||
} | ||
release { | ||
minifyEnabled true | ||
shrinkResources true | ||
signingConfig signingConfigs.android | ||
if (rootProject.file('release.jks').exists()) { | ||
signingConfig signingConfigs.release | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-ignorewarnings |
2 changes: 1 addition & 1 deletion
2
...rmwareUpdate/src/main/AndroidManifest.xml → FirmwareUpdate/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...areUpdate/src/main/java/com/panasonic/sanyo/ts/firmwareupdate/FirmwareUpdateActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.panasonic.sanyo.ts.firmwareupdate; | ||
|
||
import android.app.Activity; | ||
import android.os.Bundle; | ||
import android.widget.Toast; | ||
|
||
public class FirmwareUpdateActivity extends Activity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
finishAndRemoveTask(); | ||
Toast.makeText(this, "ファームウェアアップデートはサポートされていません。", Toast.LENGTH_SHORT).show(); | ||
} | ||
|
||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...areUpdate/src/main/java/com/panasonic/sanyo/ts/firmwareupdate/FirmwareUpdateActivity.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.