File tree 3 files changed +9
-2
lines changed
main/java/com/example/google/lint
test/java/com/example/google/lint
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ The [Android `lint` tool](http://developer.android.com/tools/help/lint.html) is
7
7
internationalization. Lint comes with over 100 checks, however it can be extended with additional
8
8
custom rules.
9
9
10
- The Custom Lint Rules API is ** not stable ** and is subject to change in the future. Be ready to change
11
- your custom lint rule implementation when the API changes.
10
+ ** NOTE: The lint API is not a final API; if you rely on this be prepared
11
+ to adjust your code for the next tools release. **
12
12
13
13
Introduction
14
14
------------
Original file line number Diff line number Diff line change 47
47
48
48
/**
49
49
* Checks for a main activity in <code>AndroidManifest.xml</code>.
50
+ * <p/>
51
+ * <b>NOTE: This is not a final API; if you rely on this be prepared
52
+ * to adjust your code for the next tools release.</b>
50
53
*/
51
54
public class MainActivityDetector extends ResourceXmlDetector implements Detector .XmlScanner {
52
55
public static final Issue ISSUE = Issue .create (
Original file line number Diff line number Diff line change 31
31
32
32
import static com .android .SdkConstants .FN_ANDROID_MANIFEST_XML ;
33
33
34
+ /**
35
+ * <b>NOTE: This is not a final API; if you rely on this be prepared
36
+ * to adjust your code for the next tools release.</b>
37
+ */
34
38
public class MainActivityDetectorTest extends LintDetectorTest {
35
39
/**
36
40
* The set of enabled issues for a given test.
You can’t perform that action at this time.
0 commit comments