
v7-appcompat can be enabled/used in gradle by changing :support-v4 with :support-appcompat-v7 in build.gradle and bumping minSdk from 5 to 7
14 lines
386 B
Groovy
14 lines
386 B
Groovy
include \
|
|
':extern:AndroidPinning',
|
|
':extern:UniversalImageLoader:library',
|
|
':extern:MemorizingTrustManager',
|
|
':extern:libsuperuser:libsuperuser',
|
|
':extern:nanohttpd:core'
|
|
|
|
include ':support-v4'
|
|
project(':support-v4').projectDir = new File('extern/Support/v4')
|
|
|
|
include ':support-appcompat-v7'
|
|
project(':support-appcompat-v7').projectDir = new File('extern/Support/v7/appcompat')
|
|
|