Skip to content

Commit cead181

Browse files
committed
release apk build
1 parent a0de73b commit cead181

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

app/app-release.apk

1.31 MB
Binary file not shown.

app/build.gradle

+9
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,19 @@ android {
1111
versionName "1.0"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
14+
signingConfigs {
15+
release {
16+
storeFile file("../dialpicker.jks")
17+
storePassword "dialpicker"
18+
keyAlias "key0"
19+
keyPassword "dialpicker"
20+
}
21+
}
1422
buildTypes {
1523
release {
1624
minifyEnabled false
1725
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
26+
signingConfig signingConfigs.release
1827
}
1928
}
2029
}

app/src/main/res/drawable/rounded_rectangle_bg.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
android:padding="10dp"
44
android:shape="rectangle">
55
<gradient
6-
android:endColor="@color/edit_text_bg"
7-
android:startColor="@color/edit_text_bg1"
6+
android:endColor="#BDBDBD"
7+
android:startColor="#9E9E9E"
88
android:type="linear" />
99
<corners android:radius="5dp" />
1010
</shape>

dialpicker.jks

2.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)