Skip to content

Commit

Permalink
Release Version
Browse files Browse the repository at this point in the history
Release Version
  • Loading branch information
RuffianZhong committed Sep 8, 2017
1 parent 547bcdc commit dcc96ae
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
android {
lintOptions {
abortOnError false
}
}
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/java/com/ruffian/widget/FragmentState.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;

import com.ruffian.library.RTextView;

/**
* 示例FragmentState
* 备注:各种边框,背景状态使用示例
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/java/com/ruffian/widget/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
import android.os.Bundle;
import android.view.View;

import com.ruffian.library.RTextView;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand All @@ -25,6 +27,7 @@ protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
initViews();
initData();

}


Expand Down
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ buildscript {

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.novoda:bintray-release:0.3.4'
}
}

allprojects {
repositories {
jcenter()
}
tasks.withType(Javadoc) {
options {
encoding "UTF-8"
charSet 'UTF-8'
links "http://docs.oracle.com/javase/7/docs/api"
}
}
}

task clean(type: Delete) {
Expand Down

0 comments on commit dcc96ae

Please sign in to comment.