Skip to content

Commit a15ba69

Browse files
committedAug 15, 2020
Git
Signed-off-by: krayong <[email protected]>
1 parent f31f6f9 commit a15ba69

11 files changed

+13
-10
lines changed
 

‎.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@
88
/build
99
/captures
1010
.externalNativeBuild
11-
.cxx
11+
.cxx
12+
/deployment_cert.der
13+
/studypartnerkeystore.jks
14+
/upload_cert.der

‎About The App.docx

15.7 KB
Binary file not shown.

‎Attendance Screen.jpg

90.9 KB
Loading

‎File Screen.jpg

65.7 KB
Loading

‎Home Screen.jpg

78.4 KB
Loading

‎Reminder Screen.jpg

73.3 KB
Loading

‎Star Screen.jpg

71.2 KB
Loading

‎Study Partner Privacy Policy.docx

293 KB
Binary file not shown.

‎Study Partner T&C.docx

292 KB
Binary file not shown.

‎app/build.gradle

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ apply plugin: "androidx.navigation.safeargs"
55
//apply plugin: 'com.google.firebase.firebase-perf'
66

77
android {
8-
// signingConfigs {
9-
// config {
10-
// storeFile file('H:\\studypartnerkeystore.jks')
11-
// storePassword 'studypartner12345'
12-
// keyAlias 'studypartnerkeystorealias'
13-
// keyPassword 'studypartner12345'
14-
// }
15-
// }
8+
signingConfigs {
9+
local {
10+
storeFile file('H:\\StudyPartner\\studypartnerkeystore.jks')
11+
storePassword 'studypartner12345'
12+
keyAlias 'studypartnerkeystorealias'
13+
keyPassword 'studypartner12345'
14+
}
15+
}
1616
compileSdkVersion 29
1717
buildToolsVersion "30.0.1"
1818

@@ -34,7 +34,7 @@ android {
3434
release {
3535
minifyEnabled false
3636
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
37-
// signingConfig signingConfigs.config
37+
signingConfig signingConfigs.local
3838
}
3939
}
4040
}

‎feature-graphic.png

236 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.