Created
September 8, 2015 01:56
-
-
Save punchdrunker/63a6f5fcd2b58ec858af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
22行目以降の記述を手元の環境に書いて、syncボタンを押しましょう