Skip to content

Commit

Permalink
UI repairs, updates
Browse files Browse the repository at this point in the history
  • Loading branch information
commonsguy committed Feb 25, 2018
1 parent d835daf commit 3a1951c
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 27 deletions.
9 changes: 7 additions & 2 deletions AppWidget/LoremWidget/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 15
targetSdkVersion 27
}
}
4 changes: 0 additions & 4 deletions AppWidget/LoremWidget/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19"/>

<uses-feature
android:name="android.software.app_widgets"
android:required="true"/>
Expand Down
4 changes: 3 additions & 1 deletion AppWidget/LoremWidget/app/src/main/res/layout/row.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:paddingLeft="8dp"
android:paddingStart="8dp"
android:textColor="@android:color/white"
android:minHeight="?android:attr/listPreferredItemHeight"
/>
9 changes: 7 additions & 2 deletions AppWidget/PairOfDice/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 15
targetSdkVersion 27
}
}
6 changes: 1 addition & 5 deletions AppWidget/PairOfDice/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="11"/>

<supports-screens
android:largeScreens="true"
android:normalScreens="true"
Expand All @@ -23,7 +19,7 @@
android:label="@string/app_name">
<receiver
android:name=".AppWidget"
android:icon="@drawable/cw"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Expand Down
9 changes: 7 additions & 2 deletions AppWidget/Resize/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 15
targetSdkVersion 27
}
}
4 changes: 0 additions & 4 deletions AppWidget/Resize/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="16"/>

<supports-screens
android:largeScreens="true"
android:normalScreens="true"
Expand Down
1 change: 1 addition & 0 deletions AppWidget/Resize/app/src/main/res/layout/widget.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="@android:color/white"
android:textAppearance="?android:attr/textAppearanceMedium">

</TextView>
Expand Down
9 changes: 7 additions & 2 deletions AppWidget/TwoOrThreeDice/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 15
targetSdkVersion 27
}
}
6 changes: 1 addition & 5 deletions AppWidget/TwoOrThreeDice/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="11"/>

<supports-screens
android:largeScreens="true"
android:normalScreens="true"
Expand All @@ -22,7 +18,7 @@
android:label="@string/app_name">
<receiver
android:name=".AppWidget"
android:icon="@drawable/cw"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Expand Down

0 comments on commit 3a1951c

Please sign in to comment.