Skip to content

Commit

Permalink
release apk fixed with google sign in
Browse files Browse the repository at this point in the history
  • Loading branch information
B-Lidberg committed Apr 19, 2021
1 parent e0bf380 commit 3eea963
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/deploymentTargetDropDown.xml

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

12 changes: 9 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ plugins {
}

android {
signingConfigs {
'RELEASE-SHA1' {
storeFile file('C:\\code\\mykeystore.jks')
storePassword 'dailydoc1207'
keyAlias 'key0'
keyPassword 'dailydoc1207'
}
}
compileSdk 30
buildToolsVersion "30.0.3"

Expand All @@ -17,6 +25,7 @@ plugins {
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.'RELEASE-SHA1'
}

buildTypes {
Expand Down Expand Up @@ -67,9 +76,6 @@ plugins {
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_version"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"

testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test"
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test"

// LifeCycle
def lifecycle_version = "2.3.1"
def compose_lifecycle_version = "1.0.0-alpha04"
Expand Down
10 changes: 9 additions & 1 deletion app/google-services.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,21 @@
},
"oauth_client": [
{
"client_id": "844436319960-qtrj3b5fgh4j42o0fcub1tv7p58e3m4m.apps.googleusercontent.com",
"client_id": "844436319960-g6fdail5bvld4onqkhgt3d5e1il2mj07.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.lid.dailydoc",
"certificate_hash": "f94ed7017830e82133267ba18d59c502d71a4527"
}
},
{
"client_id": "844436319960-mpq6rirfm0dbn52en29uld0e8qdkqkjl.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.lid.dailydoc",
"certificate_hash": "f81707f8169b8daa07bca5a77498bc9a52f5ae92"
}
},
{
"client_id": "844436319960-tupni9c3p3jnbpagqcvrrmpno8t3es0v.apps.googleusercontent.com",
"client_type": 3
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
2 changes: 2 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lid.dailydoc">

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

<application
android:name=".NotesApplication"
android:allowBackup="true"
Expand Down

0 comments on commit 3eea963

Please sign in to comment.