Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public interface AndroidLogCatSpec {
required = false,
help =
"The logcat options. e.g. '-b main -v time'. See "
+ "<a href='http://developer.android.com/tools/help/logcat.html'>logcat help</a> "
+ "<a href='https://developer.android.com/tools/help/logcat.html'>logcat help</a> "
+ "for more detail.")
String PARAM_LOG_OPTIONS = "log_options";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package mobileharness.shared.android_device_spec;
option java_package = "com.google.wireless.qa.mobileharness.shared.proto";

// ABI supported by Android till Q4 2015.
// Ref: http://developer.android.com/ndk/guides/abis.html
// Ref: https://developer.android.com/ndk/guides/abis.html
enum Abi {
ARMEABI = 1;
ARMEABI_V7A = 2;
Expand All @@ -42,7 +42,7 @@ enum DeviceType {
}

// Screen density for devices.
// Ref: http://developer.android.com/guide/practices/screens_support.html
// Ref: https://developer.android.com/guide/practices/screens_support.html
enum ScreenDensity {
LDPI = 1;
MDPI = 2;
Expand Down