fix few things

This commit is contained in:
Pritesh Nandgaonkar
2018-06-07 16:37:23 -04:00
parent 8ed3156da3
commit 3cc8dfcf5b
3 changed files with 18 additions and 0 deletions

View File

@@ -139,6 +139,9 @@ android {
srcDir 'android' srcDir 'android'
srcDir 'core' srcDir 'core'
srcDir 'plugins' srcDir 'plugins'
exclude 'console/ConsoleSonarPlugin.java'
exclude 'console/JavascriptEnvironment.java'
exclude 'console/JavascriptSession.java'
} }
res { res {
srcDir 'res' srcDir 'res'

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="sonar_skip_view_traversal"/>
</resources>

View File

@@ -0,0 +1,11 @@
// Copyright (c) 2004-present, Facebook, Inc.
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.
package com.facebook.jni;
import com.facebook.proguard.annotations.DoNotStrip;
@DoNotStrip
public abstract class HybridClassBase extends HybridData {
}