Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
punchdrunker committed Jun 18, 2018
1 parent ee415fb commit bafd5d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ android {
// <- ターゲットのandroidバージョン このバージョンによってRuntimePermissionなど一部挙動が変わる(基本的に最新に合わせたほうが良い)
buildToolsVersion versions.buildTools
// <- buildに利用するツール郡の設定(Android plugin for Gradle 3.0.0以降なら設定しない場合プラグインに合わせたバージョンが自動で選択される)
versionCode 6
versionCode 7
// <- アプリのバージョンコード 内部的に使われるもので基本的にユーザーの目にするものではない アプリのインストール時やGoogle Play Consoleでのリリースで使われる
versionName "1.2.2" // <- ユーザーが目にするバージョン名
versionName "1.2.3" // <- ユーザーが目にするバージョン名
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// <- androidTestに使われるRunner
}
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_dynamic_feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
android:layout_height="wrap_content"
android:layout_gravity="end"
android:onClick="@{activity::openGallery}"

android:text="@string/open" />
</LinearLayout>

Expand All @@ -82,17 +81,18 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:onClick="@{activity::loadAndLaunchDynamicGallery}"
android:text="@string/install" />
</LinearLayout>

<TextView
android:id="@+id/status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="@{activity::loadAndLaunchDynamicGallery}"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:onClick="@{activity::loadAndLaunchDynamicGallery}"
app:layout_constraintTop_toBottomOf="@+id/not_installed"
tools:text="status" />
</android.support.constraint.ConstraintLayout>
Expand Down
4 changes: 2 additions & 2 deletions gallery/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 27
versionCode 6
versionName "1.2.2"
versionCode 7
versionName "1.2.3"
}

// data binding用の設定
Expand Down

0 comments on commit bafd5d0

Please sign in to comment.