Removed sonar.

This commit is contained in:
Amine Bou 2018-01-11 20:53:17 +01:00
parent 2c8902d404
commit b8d234c415
5 changed files with 3 additions and 7 deletions

View File

@ -32,8 +32,6 @@ def versionNameFromGit() {
return versionName return versionName
} }
apply plugin: 'org.sonarqube'
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'io.fabric' apply plugin: 'io.fabric'

View File

@ -619,7 +619,7 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
) )
) )
val resultType = object : TypeToken<DrawerData>() {}.type //NOSONAR val resultType = object : TypeToken<DrawerData>() {}.type
Reservoir.getAsync( Reservoir.getAsync(
"drawerData", resultType, object : ReservoirGetCallback<DrawerData> { "drawerData", resultType, object : ReservoirGetCallback<DrawerData> {
override fun onSuccess(maybeDrawerData: DrawerData?) { override fun onSuccess(maybeDrawerData: DrawerData?) {

View File

@ -24,7 +24,7 @@ import com.ftinc.scoop.Scoop;
* A {@link PreferenceActivity} which implements and proxies the necessary calls * A {@link PreferenceActivity} which implements and proxies the necessary calls
* to be used with AppCompat. * to be used with AppCompat.
*/ */
public abstract class AppCompatPreferenceActivity extends PreferenceActivity { //NOSONAR public abstract class AppCompatPreferenceActivity extends PreferenceActivity {
private AppCompatDelegate mDelegate; private AppCompatDelegate mDelegate;

View File

@ -44,7 +44,7 @@ import com.ftinc.scoop.ui.ScoopSettingsActivity;
* href="http://developer.android.com/guide/topics/ui/settings.html">Settings * href="http://developer.android.com/guide/topics/ui/settings.html">Settings
* API Guide</a> for more information on developing a Settings UI. * API Guide</a> for more information on developing a Settings UI.
*/ */
public class SettingsActivity extends AppCompatPreferenceActivity { //NOSONAR public class SettingsActivity extends AppCompatPreferenceActivity {
/** /**
* A preference value change listener that updates the preference's summary * A preference value change listener that updates the preference's summary
* to reflect its new value. * to reflect its new value.

View File

@ -16,8 +16,6 @@ buildscript {
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.1' classpath 'com.google.gms:google-services:3.1.1'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
} }
} }