Lowered minSdk to API 9
This commit is contained in:
parent
dfef9b0e4e
commit
45f2641bb0
|
|
@ -25,7 +25,7 @@ android {
|
|||
buildToolsVersion "23.0.1"
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 14
|
||||
minSdkVersion 9
|
||||
targetSdkVersion 23
|
||||
versionCode Integer.parseInt(project.VERSION_CODE)
|
||||
versionName project.VERSION_NAME
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
android:id="@+id/nnf_item_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?android:selectableItemBackground"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
android:id="@+id/nnf_item_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?android:selectableItemBackground"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/nnf_button_cancel"
|
||||
style="?android:attr/borderlessButtonStyle"
|
||||
style="?attr/borderlessButtonStyle"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/nnf_button_ok"
|
||||
style="?android:attr/borderlessButtonStyle"
|
||||
style="?attr/borderlessButtonStyle"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="48dp"
|
||||
android:layout_weight="1"
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ android {
|
|||
}
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 14
|
||||
minSdkVersion 9
|
||||
targetSdkVersion 23
|
||||
versionCode Integer.parseInt(project.VERSION_CODE)
|
||||
versionName project.VERSION_NAME
|
||||
|
|
|
|||
|
|
@ -91,9 +91,9 @@ public class FtpPickerFragment extends AbstractFilePickerFragment<FtpFile> {
|
|||
Bundle args = getArguments();
|
||||
this.server = args.getString(KEY_FTP_SERVER);
|
||||
this.port = args.getInt(KEY_FTP_PORT);
|
||||
this.username = args.getString(KEY_FTP_USERNAME, "anonymous");
|
||||
this.password = args.getString(KEY_FTP_PASSWORD, "anonymous");
|
||||
this.rootDir = args.getString(KEY_FTP_ROOTDIR, "/");
|
||||
this.username = args.getString(KEY_FTP_USERNAME) != null ? args.getString(KEY_FTP_USERNAME) : "anonymous";
|
||||
this.password = args.getString(KEY_FTP_PASSWORD) != null ? args.getString(KEY_FTP_PASSWORD) : "anonymous";
|
||||
this.rootDir = args.getString(KEY_FTP_ROOTDIR) != null ? args.getString(KEY_FTP_ROOTDIR) : "/";
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/button_sd"
|
||||
style="?android:attr/borderlessButtonStyle"
|
||||
style="?attr/borderlessButtonStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="64dp"
|
||||
android:layout_gravity="center"
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/button_image"
|
||||
style="?android:attr/borderlessButtonStyle"
|
||||
style="?attr/borderlessButtonStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="64dp"
|
||||
android:layout_gravity="center"
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/button_ftp"
|
||||
style="?android:attr/borderlessButtonStyle"
|
||||
style="?attr/borderlessButtonStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="64dp"
|
||||
android:layout_gravity="center"
|
||||
|
|
@ -147,7 +147,7 @@
|
|||
|
||||
<Button
|
||||
android:id="@+id/button_dropbox"
|
||||
style="?android:attr/borderlessButtonStyle"
|
||||
style="?attr/borderlessButtonStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="64dp"
|
||||
android:layout_gravity="center"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
android:id="@+id/nnf_item_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?android:selectableItemBackground"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
android:id="@+id/nnf_item_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?android:listPreferredItemHeight"
|
||||
android:background="?android:selectableItemBackground"
|
||||
android:background="?selectableItemBackground"
|
||||
android:focusable="true"
|
||||
android:minHeight="?android:listPreferredItemHeight"
|
||||
android:nextFocusLeft="@+id/nnf_button_cancel"
|
||||
|
|
|
|||
Loading…
Reference in New Issue