Recently I was featured in an article on Wired.com
Read the article here:
Read the article here:
http://www.wired.com/2015/03/forget-pc-real-crapware-problem-android/
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'burrows.apps.ios:gradle:0.0.1'
}
}
apply plugin: 'com.ios.application'
ios {
compileSdkVersion '8.1' // iOS SDK version
buildToolsVersion '6.1' // XCode version
defaultConfig {
minSdkVersion 8 // Minimum iOS SDK version
targetSdkVersion 19 // Target iOS SDK version
versionCode 1 // *optional*
versionName '1.0' // *optional*
}
// Cocoa Pods
pods {
pod 'Google-Mobile-Ads-SDK'
pod 'GoogleAnalytics-iOS-SDK'
}
}
dependencies {
...
}