Skip to content

Commit bd6c71a

Browse files
committed
added keystore.properties file (#995)
1 parent 7286580 commit bd6c71a

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
**/*.DS_Store
22
*.iml
3+
*.apk
34
.gradle
45
.idea
56
.externalNativeBuild
67
local.properties
78
build
9+
/docs/keystore
810
/app/src/main/3rdparty/
911
/app/src/main/jniLibs/
1012
libopencv_*
1113
viewflow/
12-
gradle.properties
14+
keystore.properties

app/.DS_Store

0 Bytes
Binary file not shown.

app/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ apply plugin: 'jacoco-android'
44
apply plugin: 'realm-android'
55
apply plugin: 'com.google.firebase.firebase-perf'
66

7+
def keystorePropertiesFile = rootProject.file("sample_keystore.properties")
8+
9+
def keystoreProperties = new Properties()
10+
11+
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
12+
713
android {
814
compileSdkVersion 25
915
buildToolsVersion "25.0.3"
@@ -148,5 +154,3 @@ dependencies {
148154
}
149155
}
150156
apply plugin: 'com.google.gms.google-services'
151-
152-

app/local.properties

Lines changed: 0 additions & 11 deletions
This file was deleted.

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="org.fossasia.phimpme"
4-
android:versionCode="1"
5-
android:versionName="1.5">
4+
android:versionCode="2"
5+
android:versionName="1.0.0">
66

77
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
88
<uses-permission android:name="android.permission.CAMERA" />

sample_keystore.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
storePassword=myStorePassword
2+
keyPassword=mykeyPassword
3+
keyAlias=myKeyAlias
4+
storeFile=myStoreFileLocation

0 commit comments

Comments
 (0)