I'm really not experienced with Android.
As mentioned in Difference between android-support-v7-appcompat and android-support-v4 there are multiple various support libs in the Android. The official Android article http://developer.android.com/training/appbar/setting-up.html on using Toolbar states that I need to use v7 appcompat lib. The problem is... I don't wanna use it, as it makes a mess with everything in the code.
So, is there a way to have a toolbar without using this support lib (v7), since I need only support for Android API level >= 15 (ver. 4.0+), not 2.* or sth? If not, how could I implement it? (This class http://developer.android.com/reference/android/support/v7/widget/Toolbar.html suggests v7 lib is needed).
Further more, is it possible to force Android Studio IDE to generate projects that use no this Compat Support library? (So that I'm not required to change everything related to it - and this includes a lot of work with e.g. theme resource files - so that there's no relations to this support lib)?