Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From <a href="http://developer.android.com/tools/support-library/features.html" rel="nofollow">http://developer.android.com/tools/support-library/features.html</a>:</p> <p><strong>v4 Support Library:</strong></p> <p>This library is designed to be used with Android 1.6 (API level 4) and higher. It includes the largest set of APIs compared to the other libraries, including support for application components, user interface features, accessibility, data handling, network connectivity, and programming utilities. Here are a few of the key classes included in the v4 library:</p> <p><strong>v7 Support Library:</strong></p> <p>There are several libraries designed to be used with Android 2.1 (API level 7) and higher. These libraries provide specific feature sets and can be included in your application independently from each other.</p> <p><strong>v8 Support Library:</strong></p> <p>This library is designed to be used with Android (API level 8) and higher. It adds support for the RenderScript computation framework. These APIs are included in the android.support.v8.renderscript package. You should be aware that the steps for including these APIs in your application is very different from other support library APIs. For more information about using these APIs in your application, see the RenderScript developer guide.</p> <p><strong>v13 Support Library:</strong></p> <p>This library is designed to be used for Android 3.2 (API level 13) and higher. It adds support for the Fragment user interface pattern with the (FragmentCompat) class and additional fragment support classes For more information about fragments, see the Fragments developer guide. For detailed information about the v13 Support Library APIs, see the android.support.v13 package in the API reference.</p> <p>If you look at your error, you have two dependencies conflicting because you have both v4 and v13 imported. You can see how they have similar classes here:</p> <p><a href="http://developer.android.com/reference/android/support/v4/app/package-summary.html" rel="nofollow">http://developer.android.com/reference/android/support/v4/app/package-summary.html</a> <a href="http://developer.android.com/reference/android/support/v13/app/package-summary.html" rel="nofollow">http://developer.android.com/reference/android/support/v13/app/package-summary.html</a></p> <p>You should use v4 for min-sdk = <strong>4-12</strong> and v13 for min-sdk = <strong>13+</strong></p> <p>Though you can use v13 in lower API versions of android, your apps will crash on anything &lt;12 API. You should be able to use v7 and v13 just fine as long as you don't conflict with v4.</p> <p><strong>EDIT:</strong> Here's a video explaining android support libraries that came out recently <a href="http://xamarin.wistia.com/medias/guqtgpdqms" rel="nofollow">http://xamarin.wistia.com/medias/guqtgpdqms</a></p> <p>Source Code: <a href="https://github.com/jamesmontemagno/Xamarin.Android-AppCompat" rel="nofollow">https://github.com/jamesmontemagno/Xamarin.Android-AppCompat</a></p> <p>Source: Xamarin</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload