Skip to content

Commit

Permalink
[Android] Updating our gradle version names/codes, rename app, and ad…
Browse files Browse the repository at this point in the history
…d logo (#1372)
  • Loading branch information
eschavez committed Apr 13, 2018
1 parent f4099ad commit 2155554
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions source/android/adaptivecards/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
pom.artifactId ="adaptivecards-android-arm"
pom.artifactId ="adaptivecards-android"

repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2") {
authentication(userName: NexusUserName, password: NexusPassword)
}
pom {
setGroupId "io.adaptivecards"
setVersion '0.5.0'
setVersion '1.0.1'
}

pom.project {
Expand Down
4 changes: 2 additions & 2 deletions source/android/mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "io.adaptivecards.adaptivecardssample"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.0.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion source/android/mobile/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:icon="@mipmap/adaptive_logo"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion source/android/mobile/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<resources>
<string name="app_name">AdaptiveCardsSample</string>
<string name="app_name">AdaptiveCards Visualizer</string>
<string name="action_settings">Settings</string>
<string name="load_card">Adaptive Card</string>
<string name="load_config">Host Config</string>
Expand Down
6 changes: 3 additions & 3 deletions source/android/mobile/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="colorAccent">@color/colorPrimary</item>
<item name="colorButtonNormal">@color/colorPrimary</item>
<item name="colorControlHighlight">@color/colorAccent</item>
<!--<item name="colorControlHighlight">@color/colorAccent</item>-->
<item name="editTextBackground">@drawable/border</item>
<item name="android:editTextBackground">@drawable/border</item>
<item name="android:buttonStyle">@style/Widget.AppCompat.Button.Colored</item>
</style>

<style name="AppTheme.NoActionBar">
Expand Down

0 comments on commit 2155554

Please sign in to comment.