android {
    productFlavors {
        "nativescriptspotify" {
            dimension "nativescriptspotify"
        }
    }
}

dependencies {
      def supportVer = "22.2.0";

      if(project.hasProperty("supportVersion")) {
       supportVer = supportVersion
      }
      
    compile "com.android.support:appcompat-v7:$supportVer"
}