Skip to content

Instantly share code, notes, and snippets.

@punchdrunker
Created September 8, 2015 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save punchdrunker/63a6f5fcd2b58ec858af to your computer and use it in GitHub Desktop.
Save punchdrunker/63a6f5fcd2b58ec858af to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.example.rssreader"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
maven { url 'https://android-rome-feed-reader.googlecode.com/svn/maven2/releases' }
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.google.code.android-rome-feed-reader:android-rome-feed-reader:1.0.0-r2'
}
@punchdrunker
Copy link
Author

22行目以降の記述を手元の環境に書いて、syncボタンを押しましょう

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment