Giter VIP home page Giter VIP logo

tlint's People

Contributors

gzsll avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tlint's Issues

Error:Execution failed for task ':app:compileDebugJavaWithJavac'. > Compilation failed; see the compiler error output for details.

你好,配置文件我都改成了我电脑上的环境,但是一直报这个错,
编译时报错!
报错:
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
Compilation failed; see the compiler error output for details.

配置:
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
apply plugin: 'com.droidtitan.lintcleaner'
buildscript {
repositories {
jcenter()
}
dependencies {
// replace with the current version of the Android plugin
classpath 'com.android.tools.build:gradle:2.1.3'
// Since Android's Gradle plugin 0.11, you have to use android-apt >= 1.3
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.droidtitan:lint-cleaner-plugin:0.3.0'
}
}

apt {
arguments {
resourcePackageName "com.gzsll.hupu"
// androidManifestFile variant.outputs[0].processResources.manifestFile
}
}

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

android {
compileSdkVersion 23
buildToolsVersion "24.0.2"

defaultConfig {
applicationId "com.gzsll.hupu"
minSdkVersion 15
targetSdkVersion 22
versionCode 42
versionName "2.2"
}

signingConfigs {
def isRelease = gradle.startParameter.taskNames.any { it.contains('Release') }
def path = isRelease ? properties.getProperty("keystore.path") : 'debug.keystore'
def password = isRelease ? properties.getProperty("keystore.password") : ''
def alias = isRelease ? properties.getProperty("keystore.alias") : ''
myConfig {
storeFile file(path)
storePassword password
keyAlias alias
keyPassword password
}
}

buildTypes {
release {
signingConfig signingConfigs.myConfig
minifyEnabled false
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

lintOptions {
abortOnError false
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:24.2.0'
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:cardview-v7:24.2.0'
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:support-v13:24.2.0'

compile 'com.jakewharton:butterknife:7.0.1'
//Dagger
provided 'javax.annotation:javax.annotation-api:1.2'
compile 'com.google.dagger:dagger:2.0.2'
apt 'com.google.dagger:dagger-compiler:2.0.2'
//otto
compile 'com.squareup:otto:1.3.8'
//greendao
compile 'de.greenrobot:greendao:2.1.0'

compile 'com.squareup.okhttp3:okhttp:3.2.0'

compile 'com.squareup.retrofit2:retrofit:2.0.1'
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.1'

compile 'com.alibaba:fastjson:1.1.46.android'

compile 'io.reactivex:rxandroid:1.1.0'
compile 'io.reactivex:rxjava:1.1.5'
compile('com.github.afollestad.material-dialogs:core:0.8.5.2@aar') {
transitive = true
}
compile 'com.timehop.stickyheadersrecyclerview:library:0.4.3@aar'
compile 'com.github.clans:fab:1.6.2'
compile 'com.umeng.analytics:analytics:latest.integration'
compile 'com.daimajia.swipelayout:library:1.2.0@aar'

compile 'com.github.castorflex.smoothprogressbar:library:1.1.0'
compile 'com.liulishuo.filedownloader:library:0.2.0'

compile 'com.facebook.fresco:fresco:0.10.0'
compile "com.facebook.fresco:imagepipeline-okhttp3:0.10.0"
compile 'com.facebook.fresco:animated-gif:0.10.0'

debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta2'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
}
谢谢

关于 BaseSwipeBackActivity

你好
你的TLint项目中 使用了 BaseSwipeBackActivity
但是并没有看到 你调用其相关的方法就实现了 所有 activity 右边进入退出动画 (类似ios效果)
我想问你怎么做到的

Cookies

你好,请问那个Cookies要怎么获取?这部分有点看不太懂~ 应该是要模拟登录拿到cookies才可以进行评论回复这些东西吧?

如何登录

你好,请问登录账号和密码是什么啊,谢谢

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.