Skip to content

Commit

Permalink
updated configuration of no-support version of the library
Browse files Browse the repository at this point in the history
removed unused resources
  • Loading branch information
TomasKypta committed Sep 20, 2013
1 parent 88370c1 commit b7d5dd9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 17 deletions.
2 changes: 1 addition & 1 deletion demo/AndroidManifest.xml
Expand Up @@ -5,7 +5,7 @@
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="8"
android:minSdkVersion="14"
android:targetSdkVersion="17" />
<application
android:label="@string/app_name"
Expand Down
9 changes: 7 additions & 2 deletions library/build.gradle
Expand Up @@ -9,22 +9,27 @@ buildscript {
apply plugin: 'android-library'

dependencies {
compile 'com.android.support:support-v4:18.0.+'
}

android {
compileSdkVersion 18
buildToolsVersion "18"

defaultConfig {
minSdkVersion 8
minSdkVersion 14
targetSdkVersion 18
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}

instrumentTest.setRoot('tests')
}
}
2 changes: 1 addition & 1 deletion library/pom.xml
Expand Up @@ -14,7 +14,7 @@

<name>Android StyledDialogs library</name>
<description>This library makes styling dialogs easy. They are compatible with Holo design and Android Design
Guidelines, but allow custom colors and same look from Android 2.2+, which is normally hard to do. The library
Guidelines, but allow custom colors and same look from Android 4.0+, which is normally hard to do. The library
also contains some most common dialogs.
</description>

Expand Down
12 changes: 0 additions & 12 deletions library/res/values-v11/sdl__theme.xml

This file was deleted.

2 changes: 1 addition & 1 deletion library/res/values/sdl__theme.xml
Expand Up @@ -142,7 +142,7 @@
<item name="android:paddingBottom">@dimen/grid_4</item>
</style>

<style name="SDL.Progress" parent="@android:style/Widget.ProgressBar">
<style name="SDL.Progress" parent="@android:style/Widget.Holo.ProgressBar">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_marginRight">0dp</item>
Expand Down

0 comments on commit b7d5dd9

Please sign in to comment.