Updated The Code.
This commit is contained in:
parent
7ea94663b5
commit
7449682016
788 changed files with 41342 additions and 321 deletions
66
DBHelper.py
66
DBHelper.py
|
@ -51,51 +51,31 @@ def remove_data(user_id):
|
||||||
|
|
||||||
# Returns the first name or else an empty string.
|
# Returns the first name or else an empty string.
|
||||||
def get_firstname(user_id):
|
def get_firstname(user_id):
|
||||||
firstname = ""
|
firstname = db.child("Users").child(str(user_id)).child("First Name").get().val()
|
||||||
users = db.child("Users").get()
|
|
||||||
for user in users.each():
|
|
||||||
if user.key() == user_id:
|
|
||||||
firstname = user.val()["First Name"]
|
|
||||||
return firstname
|
return firstname
|
||||||
|
|
||||||
|
|
||||||
# Returns the last name or else an empty string.
|
# Returns the last name or else an empty string.
|
||||||
def get_lastname(user_id):
|
def get_lastname(user_id):
|
||||||
lastname = ""
|
lastname = db.child("Users").child(str(user_id)).child("Last Name").get().val()
|
||||||
users = db.child("Users").get()
|
|
||||||
for user in users.each():
|
|
||||||
if user.key() == user_id:
|
|
||||||
lastname = user.val()["Last Name"]
|
|
||||||
return lastname
|
return lastname
|
||||||
|
|
||||||
|
|
||||||
# Returns the e-mail or else an empty string.
|
# Returns the e-mail or else an empty string.
|
||||||
def get_email(user_id):
|
def get_email(user_id):
|
||||||
email = ""
|
email = db.child("Users").child(str(user_id)).child("E-Mail").get().val()
|
||||||
users = db.child("Users").get()
|
|
||||||
for user in users.each():
|
|
||||||
if user.key() == user_id:
|
|
||||||
email = user.val()["E-Mail"]
|
|
||||||
return email
|
return email
|
||||||
|
|
||||||
|
|
||||||
# Returns the phone or else an empty string.
|
# Returns the phone or else an empty string.
|
||||||
def get_phone(user_id):
|
def get_phone(user_id):
|
||||||
phone = ""
|
phone = db.child("Users").child(str(user_id)).child("Phone").get().val()
|
||||||
users = db.child("Users").get()
|
|
||||||
for user in users.each():
|
|
||||||
if user.key() == user_id:
|
|
||||||
phone = user.val()["Phone"]
|
|
||||||
return phone
|
return phone
|
||||||
|
|
||||||
|
|
||||||
# Returns the address or else an empty string.
|
# Returns the address or else an empty string.
|
||||||
def get_address(user_id):
|
def get_address(user_id):
|
||||||
address = ""
|
address = db.child("Users").child(str(user_id)).child("Address").get().val()
|
||||||
users = db.child("Users").get()
|
|
||||||
for user in users.each():
|
|
||||||
if user.key() == user_id:
|
|
||||||
address = user.val()["Address"]
|
|
||||||
return address
|
return address
|
||||||
|
|
||||||
|
|
||||||
|
@ -127,3 +107,39 @@ def delete_user_photo(user_photo):
|
||||||
# Deletes photo of the specified thief.
|
# Deletes photo of the specified thief.
|
||||||
def delete_thief_photo(user_photo):
|
def delete_thief_photo(user_photo):
|
||||||
storage.delete('Photos_of_Thieves/' + user_photo)
|
storage.delete('Photos_of_Thieves/' + user_photo)
|
||||||
|
|
||||||
|
|
||||||
|
# Motor signal getter
|
||||||
|
def get_motor():
|
||||||
|
motor = db.child("signal").child("1").child("motor").get().val()
|
||||||
|
return motor
|
||||||
|
|
||||||
|
|
||||||
|
# Motor signal setter
|
||||||
|
def set_motor(motor):
|
||||||
|
data = {"motor": motor}
|
||||||
|
db.child("signal").child("1").set(data)
|
||||||
|
|
||||||
|
|
||||||
|
# Alarm signal getter
|
||||||
|
def get_alarm():
|
||||||
|
alarm = db.child("signal").child("1").child("alarm").get().val()
|
||||||
|
return alarm
|
||||||
|
|
||||||
|
|
||||||
|
# Alarm signal setter
|
||||||
|
def set_alarm(alarm):
|
||||||
|
data = {"alarm": alarm}
|
||||||
|
db.child("signal").child("1").set(data)
|
||||||
|
|
||||||
|
|
||||||
|
# Power signal getter
|
||||||
|
def get_power():
|
||||||
|
alarm = db.child("signal").child("1").child("power").get().val()
|
||||||
|
return alarm
|
||||||
|
|
||||||
|
|
||||||
|
# Power signal setter
|
||||||
|
def set_power(power):
|
||||||
|
data = {"power": power}
|
||||||
|
db.child("signal").child("1").set(data)
|
|
@ -28,3 +28,5 @@ def register_your_face(label):
|
||||||
|
|
||||||
cap.release()
|
cap.release()
|
||||||
cv2.destroyAllWindows()
|
cv2.destroyAllWindows()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ import numpy as np
|
||||||
import Facial_Recognition_Render as fr
|
import Facial_Recognition_Render as fr
|
||||||
import _pickle as cPickle
|
import _pickle as cPickle
|
||||||
import glob
|
import glob
|
||||||
|
import DBHelper
|
||||||
'import Hardware.Motor' # Line 225-228
|
import Hardware.Updated_HW_codes.NewMotorFunc # Line 225-228
|
||||||
|
|
||||||
faceWidth = 320
|
faceWidth = 320
|
||||||
faceHeight = 320
|
faceHeight = 320
|
||||||
|
@ -223,10 +223,10 @@ def face_recognition_inference(rec_type):
|
||||||
text = '{} {}%'.format(labelsMap[predictedLabel], round(score, 5))
|
text = '{} {}%'.format(labelsMap[predictedLabel], round(score, 5))
|
||||||
cv2.rectangle(original, (x1, y1), (x2, y2), (0, 255, 0), 5)
|
cv2.rectangle(original, (x1, y1), (x2, y2), (0, 255, 0), 5)
|
||||||
cv2.putText(original, text, (x1, y1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 255, 0), 3)
|
cv2.putText(original, text, (x1, y1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (0, 255, 0), 3)
|
||||||
'Hardware.Motor.Motor.stop_alarm()'
|
DBHelper.set_motor("on")
|
||||||
'Hardware.Motor.Motor.start_motor()'
|
Hardware.Updated_HW_codes.NewMotorFunc.Motor.start_motor()
|
||||||
'Hardware.Motor.Motor.stop_motor()'
|
DBHelper.set_alarm("on")
|
||||||
'Hardware.Motor.Motor.start_alarm()'
|
Hardware.Updated_HW_codes.NewMotorFunc.Motor.start_alarm()
|
||||||
|
|
||||||
cv2.imshow('Face Recognition Demo', original)
|
cv2.imshow('Face Recognition Demo', original)
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
|
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||||
<component name="GradleSettings">
|
<component name="GradleSettings">
|
||||||
<option name="linkedExternalProjectsSettings">
|
<option name="linkedExternalProjectsSettings">
|
||||||
<GradleProjectSettings>
|
<GradleProjectSettings>
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.arch.core;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.asynclayoutinflater;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,242 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.constraintlayout.widget;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int barrierAllowsGoneWidgets = 0x7f020037;
|
||||||
|
public static final int barrierDirection = 0x7f020038;
|
||||||
|
public static final int chainUseRtl = 0x7f020046;
|
||||||
|
public static final int constraintSet = 0x7f020059;
|
||||||
|
public static final int constraint_referenced_ids = 0x7f02005a;
|
||||||
|
public static final int content = 0x7f02005b;
|
||||||
|
public static final int emptyVisibility = 0x7f020077;
|
||||||
|
public static final int layout_constrainedHeight = 0x7f02009a;
|
||||||
|
public static final int layout_constrainedWidth = 0x7f02009b;
|
||||||
|
public static final int layout_constraintBaseline_creator = 0x7f02009c;
|
||||||
|
public static final int layout_constraintBaseline_toBaselineOf = 0x7f02009d;
|
||||||
|
public static final int layout_constraintBottom_creator = 0x7f02009e;
|
||||||
|
public static final int layout_constraintBottom_toBottomOf = 0x7f02009f;
|
||||||
|
public static final int layout_constraintBottom_toTopOf = 0x7f0200a0;
|
||||||
|
public static final int layout_constraintCircle = 0x7f0200a1;
|
||||||
|
public static final int layout_constraintCircleAngle = 0x7f0200a2;
|
||||||
|
public static final int layout_constraintCircleRadius = 0x7f0200a3;
|
||||||
|
public static final int layout_constraintDimensionRatio = 0x7f0200a4;
|
||||||
|
public static final int layout_constraintEnd_toEndOf = 0x7f0200a5;
|
||||||
|
public static final int layout_constraintEnd_toStartOf = 0x7f0200a6;
|
||||||
|
public static final int layout_constraintGuide_begin = 0x7f0200a7;
|
||||||
|
public static final int layout_constraintGuide_end = 0x7f0200a8;
|
||||||
|
public static final int layout_constraintGuide_percent = 0x7f0200a9;
|
||||||
|
public static final int layout_constraintHeight_default = 0x7f0200aa;
|
||||||
|
public static final int layout_constraintHeight_max = 0x7f0200ab;
|
||||||
|
public static final int layout_constraintHeight_min = 0x7f0200ac;
|
||||||
|
public static final int layout_constraintHeight_percent = 0x7f0200ad;
|
||||||
|
public static final int layout_constraintHorizontal_bias = 0x7f0200ae;
|
||||||
|
public static final int layout_constraintHorizontal_chainStyle = 0x7f0200af;
|
||||||
|
public static final int layout_constraintHorizontal_weight = 0x7f0200b0;
|
||||||
|
public static final int layout_constraintLeft_creator = 0x7f0200b1;
|
||||||
|
public static final int layout_constraintLeft_toLeftOf = 0x7f0200b2;
|
||||||
|
public static final int layout_constraintLeft_toRightOf = 0x7f0200b3;
|
||||||
|
public static final int layout_constraintRight_creator = 0x7f0200b4;
|
||||||
|
public static final int layout_constraintRight_toLeftOf = 0x7f0200b5;
|
||||||
|
public static final int layout_constraintRight_toRightOf = 0x7f0200b6;
|
||||||
|
public static final int layout_constraintStart_toEndOf = 0x7f0200b7;
|
||||||
|
public static final int layout_constraintStart_toStartOf = 0x7f0200b8;
|
||||||
|
public static final int layout_constraintTop_creator = 0x7f0200b9;
|
||||||
|
public static final int layout_constraintTop_toBottomOf = 0x7f0200ba;
|
||||||
|
public static final int layout_constraintTop_toTopOf = 0x7f0200bb;
|
||||||
|
public static final int layout_constraintVertical_bias = 0x7f0200bc;
|
||||||
|
public static final int layout_constraintVertical_chainStyle = 0x7f0200bd;
|
||||||
|
public static final int layout_constraintVertical_weight = 0x7f0200be;
|
||||||
|
public static final int layout_constraintWidth_default = 0x7f0200bf;
|
||||||
|
public static final int layout_constraintWidth_max = 0x7f0200c0;
|
||||||
|
public static final int layout_constraintWidth_min = 0x7f0200c1;
|
||||||
|
public static final int layout_constraintWidth_percent = 0x7f0200c2;
|
||||||
|
public static final int layout_editor_absoluteX = 0x7f0200c4;
|
||||||
|
public static final int layout_editor_absoluteY = 0x7f0200c5;
|
||||||
|
public static final int layout_goneMarginBottom = 0x7f0200c6;
|
||||||
|
public static final int layout_goneMarginEnd = 0x7f0200c7;
|
||||||
|
public static final int layout_goneMarginLeft = 0x7f0200c8;
|
||||||
|
public static final int layout_goneMarginRight = 0x7f0200c9;
|
||||||
|
public static final int layout_goneMarginStart = 0x7f0200ca;
|
||||||
|
public static final int layout_goneMarginTop = 0x7f0200cb;
|
||||||
|
public static final int layout_optimizationLevel = 0x7f0200ce;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int bottom = 0x7f070021;
|
||||||
|
public static final int end = 0x7f07003a;
|
||||||
|
public static final int gone = 0x7f070041;
|
||||||
|
public static final int invisible = 0x7f07004c;
|
||||||
|
public static final int left = 0x7f07004e;
|
||||||
|
public static final int packed = 0x7f07005c;
|
||||||
|
public static final int parent = 0x7f07005d;
|
||||||
|
public static final int percent = 0x7f07005f;
|
||||||
|
public static final int right = 0x7f070063;
|
||||||
|
public static final int spread = 0x7f07007d;
|
||||||
|
public static final int spread_inside = 0x7f07007e;
|
||||||
|
public static final int start = 0x7f070083;
|
||||||
|
public static final int top = 0x7f070092;
|
||||||
|
public static final int wrap = 0x7f070098;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ConstraintLayout_Layout = { 0x10100c4, 0x101011f, 0x1010120, 0x101013f, 0x1010140, 0x7f020037, 0x7f020038, 0x7f020046, 0x7f020059, 0x7f02005a, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200ce };
|
||||||
|
public static final int ConstraintLayout_Layout_android_orientation = 0;
|
||||||
|
public static final int ConstraintLayout_Layout_android_maxWidth = 1;
|
||||||
|
public static final int ConstraintLayout_Layout_android_maxHeight = 2;
|
||||||
|
public static final int ConstraintLayout_Layout_android_minWidth = 3;
|
||||||
|
public static final int ConstraintLayout_Layout_android_minHeight = 4;
|
||||||
|
public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets = 5;
|
||||||
|
public static final int ConstraintLayout_Layout_barrierDirection = 6;
|
||||||
|
public static final int ConstraintLayout_Layout_chainUseRtl = 7;
|
||||||
|
public static final int ConstraintLayout_Layout_constraintSet = 8;
|
||||||
|
public static final int ConstraintLayout_Layout_constraint_referenced_ids = 9;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constrainedHeight = 10;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constrainedWidth = 11;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 12;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 13;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 14;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 15;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 16;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintCircle = 17;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintCircleAngle = 18;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintCircleRadius = 19;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 20;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 21;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 22;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 23;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 24;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 25;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 26;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 27;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 28;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHeight_percent = 29;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 30;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 31;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 32;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 33;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 34;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 35;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 36;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 37;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 38;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 39;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 40;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 41;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 42;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 43;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 44;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 45;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 46;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 47;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 48;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 49;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_constraintWidth_percent = 50;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 51;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 52;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 53;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 54;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 55;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_goneMarginRight = 56;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_goneMarginStart = 57;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_goneMarginTop = 58;
|
||||||
|
public static final int ConstraintLayout_Layout_layout_optimizationLevel = 59;
|
||||||
|
public static final int[] ConstraintLayout_placeholder = { 0x7f02005b, 0x7f020077 };
|
||||||
|
public static final int ConstraintLayout_placeholder_content = 0;
|
||||||
|
public static final int ConstraintLayout_placeholder_emptyVisibility = 1;
|
||||||
|
public static final int[] ConstraintSet = { 0x10100c4, 0x10100d0, 0x10100dc, 0x10100f4, 0x10100f5, 0x10100f7, 0x10100f8, 0x10100f9, 0x10100fa, 0x101011f, 0x1010120, 0x101013f, 0x1010140, 0x101031f, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x1010324, 0x1010325, 0x1010326, 0x1010327, 0x1010328, 0x10103b5, 0x10103b6, 0x10103fa, 0x1010440, 0x7f020037, 0x7f020038, 0x7f020046, 0x7f02005a, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb };
|
||||||
|
public static final int ConstraintSet_android_orientation = 0;
|
||||||
|
public static final int ConstraintSet_android_id = 1;
|
||||||
|
public static final int ConstraintSet_android_visibility = 2;
|
||||||
|
public static final int ConstraintSet_android_layout_width = 3;
|
||||||
|
public static final int ConstraintSet_android_layout_height = 4;
|
||||||
|
public static final int ConstraintSet_android_layout_marginLeft = 5;
|
||||||
|
public static final int ConstraintSet_android_layout_marginTop = 6;
|
||||||
|
public static final int ConstraintSet_android_layout_marginRight = 7;
|
||||||
|
public static final int ConstraintSet_android_layout_marginBottom = 8;
|
||||||
|
public static final int ConstraintSet_android_maxWidth = 9;
|
||||||
|
public static final int ConstraintSet_android_maxHeight = 10;
|
||||||
|
public static final int ConstraintSet_android_minWidth = 11;
|
||||||
|
public static final int ConstraintSet_android_minHeight = 12;
|
||||||
|
public static final int ConstraintSet_android_alpha = 13;
|
||||||
|
public static final int ConstraintSet_android_transformPivotX = 14;
|
||||||
|
public static final int ConstraintSet_android_transformPivotY = 15;
|
||||||
|
public static final int ConstraintSet_android_translationX = 16;
|
||||||
|
public static final int ConstraintSet_android_translationY = 17;
|
||||||
|
public static final int ConstraintSet_android_scaleX = 18;
|
||||||
|
public static final int ConstraintSet_android_scaleY = 19;
|
||||||
|
public static final int ConstraintSet_android_rotation = 20;
|
||||||
|
public static final int ConstraintSet_android_rotationX = 21;
|
||||||
|
public static final int ConstraintSet_android_rotationY = 22;
|
||||||
|
public static final int ConstraintSet_android_layout_marginStart = 23;
|
||||||
|
public static final int ConstraintSet_android_layout_marginEnd = 24;
|
||||||
|
public static final int ConstraintSet_android_translationZ = 25;
|
||||||
|
public static final int ConstraintSet_android_elevation = 26;
|
||||||
|
public static final int ConstraintSet_barrierAllowsGoneWidgets = 27;
|
||||||
|
public static final int ConstraintSet_barrierDirection = 28;
|
||||||
|
public static final int ConstraintSet_chainUseRtl = 29;
|
||||||
|
public static final int ConstraintSet_constraint_referenced_ids = 30;
|
||||||
|
public static final int ConstraintSet_layout_constrainedHeight = 31;
|
||||||
|
public static final int ConstraintSet_layout_constrainedWidth = 32;
|
||||||
|
public static final int ConstraintSet_layout_constraintBaseline_creator = 33;
|
||||||
|
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 34;
|
||||||
|
public static final int ConstraintSet_layout_constraintBottom_creator = 35;
|
||||||
|
public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 36;
|
||||||
|
public static final int ConstraintSet_layout_constraintBottom_toTopOf = 37;
|
||||||
|
public static final int ConstraintSet_layout_constraintCircle = 38;
|
||||||
|
public static final int ConstraintSet_layout_constraintCircleAngle = 39;
|
||||||
|
public static final int ConstraintSet_layout_constraintCircleRadius = 40;
|
||||||
|
public static final int ConstraintSet_layout_constraintDimensionRatio = 41;
|
||||||
|
public static final int ConstraintSet_layout_constraintEnd_toEndOf = 42;
|
||||||
|
public static final int ConstraintSet_layout_constraintEnd_toStartOf = 43;
|
||||||
|
public static final int ConstraintSet_layout_constraintGuide_begin = 44;
|
||||||
|
public static final int ConstraintSet_layout_constraintGuide_end = 45;
|
||||||
|
public static final int ConstraintSet_layout_constraintGuide_percent = 46;
|
||||||
|
public static final int ConstraintSet_layout_constraintHeight_default = 47;
|
||||||
|
public static final int ConstraintSet_layout_constraintHeight_max = 48;
|
||||||
|
public static final int ConstraintSet_layout_constraintHeight_min = 49;
|
||||||
|
public static final int ConstraintSet_layout_constraintHeight_percent = 50;
|
||||||
|
public static final int ConstraintSet_layout_constraintHorizontal_bias = 51;
|
||||||
|
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 52;
|
||||||
|
public static final int ConstraintSet_layout_constraintHorizontal_weight = 53;
|
||||||
|
public static final int ConstraintSet_layout_constraintLeft_creator = 54;
|
||||||
|
public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 55;
|
||||||
|
public static final int ConstraintSet_layout_constraintLeft_toRightOf = 56;
|
||||||
|
public static final int ConstraintSet_layout_constraintRight_creator = 57;
|
||||||
|
public static final int ConstraintSet_layout_constraintRight_toLeftOf = 58;
|
||||||
|
public static final int ConstraintSet_layout_constraintRight_toRightOf = 59;
|
||||||
|
public static final int ConstraintSet_layout_constraintStart_toEndOf = 60;
|
||||||
|
public static final int ConstraintSet_layout_constraintStart_toStartOf = 61;
|
||||||
|
public static final int ConstraintSet_layout_constraintTop_creator = 62;
|
||||||
|
public static final int ConstraintSet_layout_constraintTop_toBottomOf = 63;
|
||||||
|
public static final int ConstraintSet_layout_constraintTop_toTopOf = 64;
|
||||||
|
public static final int ConstraintSet_layout_constraintVertical_bias = 65;
|
||||||
|
public static final int ConstraintSet_layout_constraintVertical_chainStyle = 66;
|
||||||
|
public static final int ConstraintSet_layout_constraintVertical_weight = 67;
|
||||||
|
public static final int ConstraintSet_layout_constraintWidth_default = 68;
|
||||||
|
public static final int ConstraintSet_layout_constraintWidth_max = 69;
|
||||||
|
public static final int ConstraintSet_layout_constraintWidth_min = 70;
|
||||||
|
public static final int ConstraintSet_layout_constraintWidth_percent = 71;
|
||||||
|
public static final int ConstraintSet_layout_editor_absoluteX = 72;
|
||||||
|
public static final int ConstraintSet_layout_editor_absoluteY = 73;
|
||||||
|
public static final int ConstraintSet_layout_goneMarginBottom = 74;
|
||||||
|
public static final int ConstraintSet_layout_goneMarginEnd = 75;
|
||||||
|
public static final int ConstraintSet_layout_goneMarginLeft = 76;
|
||||||
|
public static final int ConstraintSet_layout_goneMarginRight = 77;
|
||||||
|
public static final int ConstraintSet_layout_goneMarginStart = 78;
|
||||||
|
public static final int ConstraintSet_layout_goneMarginTop = 79;
|
||||||
|
public static final int[] LinearConstraintLayout = { 0x10100c4 };
|
||||||
|
public static final int LinearConstraintLayout_android_orientation = 0;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,211 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.coordinatorlayout;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int coordinatorLayoutStyle = 0x7f020064;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int keylines = 0x7f020094;
|
||||||
|
public static final int layout_anchor = 0x7f020097;
|
||||||
|
public static final int layout_anchorGravity = 0x7f020098;
|
||||||
|
public static final int layout_behavior = 0x7f020099;
|
||||||
|
public static final int layout_dodgeInsetEdges = 0x7f0200c3;
|
||||||
|
public static final int layout_insetEdge = 0x7f0200cc;
|
||||||
|
public static final int layout_keyline = 0x7f0200cd;
|
||||||
|
public static final int statusBarBackground = 0x7f020109;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int bottom = 0x7f070021;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int end = 0x7f07003a;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int left = 0x7f07004e;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int none = 0x7f070057;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right = 0x7f070063;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int start = 0x7f070083;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
public static final int top = 0x7f070092;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
public static final int Widget_Support_CoordinatorLayout = 0x7f0c015a;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f020109 };
|
||||||
|
public static final int CoordinatorLayout_keylines = 0;
|
||||||
|
public static final int CoordinatorLayout_statusBarBackground = 1;
|
||||||
|
public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd };
|
||||||
|
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchor = 1;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_behavior = 3;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_keyline = 6;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.core;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.cursoradapter;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.customview;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.documentfile;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.drawerlayout;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,211 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.fragment;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int coordinatorLayoutStyle = 0x7f020064;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int keylines = 0x7f020094;
|
||||||
|
public static final int layout_anchor = 0x7f020097;
|
||||||
|
public static final int layout_anchorGravity = 0x7f020098;
|
||||||
|
public static final int layout_behavior = 0x7f020099;
|
||||||
|
public static final int layout_dodgeInsetEdges = 0x7f0200c3;
|
||||||
|
public static final int layout_insetEdge = 0x7f0200cc;
|
||||||
|
public static final int layout_keyline = 0x7f0200cd;
|
||||||
|
public static final int statusBarBackground = 0x7f020109;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int bottom = 0x7f070021;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int end = 0x7f07003a;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int left = 0x7f07004e;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int none = 0x7f070057;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right = 0x7f070063;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int start = 0x7f070083;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
public static final int top = 0x7f070092;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
public static final int Widget_Support_CoordinatorLayout = 0x7f0c015a;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f020109 };
|
||||||
|
public static final int CoordinatorLayout_keylines = 0;
|
||||||
|
public static final int CoordinatorLayout_statusBarBackground = 1;
|
||||||
|
public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd };
|
||||||
|
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchor = 1;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_behavior = 3;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_keyline = 6;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.interpolator;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,211 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.legacy.coreui;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int coordinatorLayoutStyle = 0x7f020064;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int keylines = 0x7f020094;
|
||||||
|
public static final int layout_anchor = 0x7f020097;
|
||||||
|
public static final int layout_anchorGravity = 0x7f020098;
|
||||||
|
public static final int layout_behavior = 0x7f020099;
|
||||||
|
public static final int layout_dodgeInsetEdges = 0x7f0200c3;
|
||||||
|
public static final int layout_insetEdge = 0x7f0200cc;
|
||||||
|
public static final int layout_keyline = 0x7f0200cd;
|
||||||
|
public static final int statusBarBackground = 0x7f020109;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int bottom = 0x7f070021;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int end = 0x7f07003a;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int left = 0x7f07004e;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int none = 0x7f070057;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right = 0x7f070063;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int start = 0x7f070083;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
public static final int top = 0x7f070092;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
public static final int Widget_Support_CoordinatorLayout = 0x7f0c015a;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f020109 };
|
||||||
|
public static final int CoordinatorLayout_keylines = 0;
|
||||||
|
public static final int CoordinatorLayout_statusBarBackground = 1;
|
||||||
|
public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd };
|
||||||
|
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchor = 1;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_behavior = 3;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_keyline = 6;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.legacy.coreutils;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.lifecycle;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.lifecycle.livedata;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.lifecycle.livedata.core;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.lifecycle.viewmodel;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.loader;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.localbroadcastmanager;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.print;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.slidingpanelayout;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.swiperefreshlayout;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,211 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.vectordrawable;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int coordinatorLayoutStyle = 0x7f020064;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int keylines = 0x7f020094;
|
||||||
|
public static final int layout_anchor = 0x7f020097;
|
||||||
|
public static final int layout_anchorGravity = 0x7f020098;
|
||||||
|
public static final int layout_behavior = 0x7f020099;
|
||||||
|
public static final int layout_dodgeInsetEdges = 0x7f0200c3;
|
||||||
|
public static final int layout_insetEdge = 0x7f0200cc;
|
||||||
|
public static final int layout_keyline = 0x7f0200cd;
|
||||||
|
public static final int statusBarBackground = 0x7f020109;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int bottom = 0x7f070021;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int end = 0x7f07003a;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int left = 0x7f07004e;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int none = 0x7f070057;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right = 0x7f070063;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int start = 0x7f070083;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
public static final int top = 0x7f070092;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
public static final int Widget_Support_CoordinatorLayout = 0x7f0c015a;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f020109 };
|
||||||
|
public static final int CoordinatorLayout_keylines = 0;
|
||||||
|
public static final int CoordinatorLayout_statusBarBackground = 1;
|
||||||
|
public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd };
|
||||||
|
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchor = 1;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_behavior = 3;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
|
||||||
|
public static final int CoordinatorLayout_Layout_layout_keyline = 6;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.versionedparcelable;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,183 @@
|
||||||
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||||
|
*
|
||||||
|
* This class was automatically generated by the
|
||||||
|
* gradle plugin from the resource data it found. It
|
||||||
|
* should not be modified by hand.
|
||||||
|
*/
|
||||||
|
package androidx.viewpager;
|
||||||
|
|
||||||
|
public final class R {
|
||||||
|
private R() {}
|
||||||
|
|
||||||
|
public static final class attr {
|
||||||
|
private attr() {}
|
||||||
|
|
||||||
|
public static final int alpha = 0x7f020027;
|
||||||
|
public static final int font = 0x7f02007a;
|
||||||
|
public static final int fontProviderAuthority = 0x7f02007c;
|
||||||
|
public static final int fontProviderCerts = 0x7f02007d;
|
||||||
|
public static final int fontProviderFetchStrategy = 0x7f02007e;
|
||||||
|
public static final int fontProviderFetchTimeout = 0x7f02007f;
|
||||||
|
public static final int fontProviderPackage = 0x7f020080;
|
||||||
|
public static final int fontProviderQuery = 0x7f020081;
|
||||||
|
public static final int fontStyle = 0x7f020082;
|
||||||
|
public static final int fontVariationSettings = 0x7f020083;
|
||||||
|
public static final int fontWeight = 0x7f020084;
|
||||||
|
public static final int ttcIndex = 0x7f02013c;
|
||||||
|
}
|
||||||
|
public static final class color {
|
||||||
|
private color() {}
|
||||||
|
|
||||||
|
public static final int notification_action_color_filter = 0x7f04003f;
|
||||||
|
public static final int notification_icon_bg_color = 0x7f040040;
|
||||||
|
public static final int ripple_material_light = 0x7f04004a;
|
||||||
|
public static final int secondary_text_default_material_light = 0x7f04004c;
|
||||||
|
}
|
||||||
|
public static final class dimen {
|
||||||
|
private dimen() {}
|
||||||
|
|
||||||
|
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
|
||||||
|
public static final int compat_button_inset_vertical_material = 0x7f05004c;
|
||||||
|
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
|
||||||
|
public static final int compat_button_padding_vertical_material = 0x7f05004e;
|
||||||
|
public static final int compat_control_corner_material = 0x7f05004f;
|
||||||
|
public static final int compat_notification_large_icon_max_height = 0x7f050050;
|
||||||
|
public static final int compat_notification_large_icon_max_width = 0x7f050051;
|
||||||
|
public static final int notification_action_icon_size = 0x7f05005b;
|
||||||
|
public static final int notification_action_text_size = 0x7f05005c;
|
||||||
|
public static final int notification_big_circle_margin = 0x7f05005d;
|
||||||
|
public static final int notification_content_margin_start = 0x7f05005e;
|
||||||
|
public static final int notification_large_icon_height = 0x7f05005f;
|
||||||
|
public static final int notification_large_icon_width = 0x7f050060;
|
||||||
|
public static final int notification_main_column_padding_top = 0x7f050061;
|
||||||
|
public static final int notification_media_narrow_margin = 0x7f050062;
|
||||||
|
public static final int notification_right_icon_size = 0x7f050063;
|
||||||
|
public static final int notification_right_side_padding_top = 0x7f050064;
|
||||||
|
public static final int notification_small_icon_background_padding = 0x7f050065;
|
||||||
|
public static final int notification_small_icon_size_as_large = 0x7f050066;
|
||||||
|
public static final int notification_subtext_size = 0x7f050067;
|
||||||
|
public static final int notification_top_pad = 0x7f050068;
|
||||||
|
public static final int notification_top_pad_large_text = 0x7f050069;
|
||||||
|
}
|
||||||
|
public static final class drawable {
|
||||||
|
private drawable() {}
|
||||||
|
|
||||||
|
public static final int notification_action_background = 0x7f06005a;
|
||||||
|
public static final int notification_bg = 0x7f06005b;
|
||||||
|
public static final int notification_bg_low = 0x7f06005c;
|
||||||
|
public static final int notification_bg_low_normal = 0x7f06005d;
|
||||||
|
public static final int notification_bg_low_pressed = 0x7f06005e;
|
||||||
|
public static final int notification_bg_normal = 0x7f06005f;
|
||||||
|
public static final int notification_bg_normal_pressed = 0x7f060060;
|
||||||
|
public static final int notification_icon_background = 0x7f060061;
|
||||||
|
public static final int notification_template_icon_bg = 0x7f060062;
|
||||||
|
public static final int notification_template_icon_low_bg = 0x7f060063;
|
||||||
|
public static final int notification_tile_bg = 0x7f060064;
|
||||||
|
public static final int notify_panel_notification_icon_bg = 0x7f060065;
|
||||||
|
}
|
||||||
|
public static final class id {
|
||||||
|
private id() {}
|
||||||
|
|
||||||
|
public static final int action_container = 0x7f07000d;
|
||||||
|
public static final int action_divider = 0x7f07000f;
|
||||||
|
public static final int action_image = 0x7f070010;
|
||||||
|
public static final int action_text = 0x7f070016;
|
||||||
|
public static final int actions = 0x7f070017;
|
||||||
|
public static final int async = 0x7f07001d;
|
||||||
|
public static final int blocking = 0x7f070020;
|
||||||
|
public static final int chronometer = 0x7f07002c;
|
||||||
|
public static final int forever = 0x7f070040;
|
||||||
|
public static final int icon = 0x7f070046;
|
||||||
|
public static final int icon_group = 0x7f070047;
|
||||||
|
public static final int info = 0x7f07004b;
|
||||||
|
public static final int italic = 0x7f07004d;
|
||||||
|
public static final int line1 = 0x7f07004f;
|
||||||
|
public static final int line3 = 0x7f070050;
|
||||||
|
public static final int normal = 0x7f070058;
|
||||||
|
public static final int notification_background = 0x7f070059;
|
||||||
|
public static final int notification_main_column = 0x7f07005a;
|
||||||
|
public static final int notification_main_column_container = 0x7f07005b;
|
||||||
|
public static final int right_icon = 0x7f070064;
|
||||||
|
public static final int right_side = 0x7f070065;
|
||||||
|
public static final int tag_transition_group = 0x7f070087;
|
||||||
|
public static final int tag_unhandled_key_event_manager = 0x7f070088;
|
||||||
|
public static final int tag_unhandled_key_listeners = 0x7f070089;
|
||||||
|
public static final int text = 0x7f07008a;
|
||||||
|
public static final int text2 = 0x7f07008b;
|
||||||
|
public static final int time = 0x7f07008e;
|
||||||
|
public static final int title = 0x7f07008f;
|
||||||
|
}
|
||||||
|
public static final class integer {
|
||||||
|
private integer() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_maxnum = 0x7f080004;
|
||||||
|
}
|
||||||
|
public static final class layout {
|
||||||
|
private layout() {}
|
||||||
|
|
||||||
|
public static final int notification_action = 0x7f09001e;
|
||||||
|
public static final int notification_action_tombstone = 0x7f09001f;
|
||||||
|
public static final int notification_template_custom_big = 0x7f090020;
|
||||||
|
public static final int notification_template_icon_group = 0x7f090021;
|
||||||
|
public static final int notification_template_part_chronometer = 0x7f090022;
|
||||||
|
public static final int notification_template_part_time = 0x7f090023;
|
||||||
|
}
|
||||||
|
public static final class string {
|
||||||
|
private string() {}
|
||||||
|
|
||||||
|
public static final int status_bar_notification_info_overflow = 0x7f0b0029;
|
||||||
|
}
|
||||||
|
public static final class style {
|
||||||
|
private style() {}
|
||||||
|
|
||||||
|
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
|
||||||
|
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
|
||||||
|
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
|
||||||
|
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
|
||||||
|
}
|
||||||
|
public static final class styleable {
|
||||||
|
private styleable() {}
|
||||||
|
|
||||||
|
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
|
||||||
|
public static final int ColorStateListItem_android_color = 0;
|
||||||
|
public static final int ColorStateListItem_android_alpha = 1;
|
||||||
|
public static final int ColorStateListItem_alpha = 2;
|
||||||
|
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
|
||||||
|
public static final int FontFamily_fontProviderAuthority = 0;
|
||||||
|
public static final int FontFamily_fontProviderCerts = 1;
|
||||||
|
public static final int FontFamily_fontProviderFetchStrategy = 2;
|
||||||
|
public static final int FontFamily_fontProviderFetchTimeout = 3;
|
||||||
|
public static final int FontFamily_fontProviderPackage = 4;
|
||||||
|
public static final int FontFamily_fontProviderQuery = 5;
|
||||||
|
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
|
||||||
|
public static final int FontFamilyFont_android_font = 0;
|
||||||
|
public static final int FontFamilyFont_android_fontWeight = 1;
|
||||||
|
public static final int FontFamilyFont_android_fontStyle = 2;
|
||||||
|
public static final int FontFamilyFont_android_ttcIndex = 3;
|
||||||
|
public static final int FontFamilyFont_android_fontVariationSettings = 4;
|
||||||
|
public static final int FontFamilyFont_font = 5;
|
||||||
|
public static final int FontFamilyFont_fontStyle = 6;
|
||||||
|
public static final int FontFamilyFont_fontVariationSettings = 7;
|
||||||
|
public static final int FontFamilyFont_fontWeight = 8;
|
||||||
|
public static final int FontFamilyFont_ttcIndex = 9;
|
||||||
|
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
|
||||||
|
public static final int GradientColor_android_startColor = 0;
|
||||||
|
public static final int GradientColor_android_endColor = 1;
|
||||||
|
public static final int GradientColor_android_type = 2;
|
||||||
|
public static final int GradientColor_android_centerX = 3;
|
||||||
|
public static final int GradientColor_android_centerY = 4;
|
||||||
|
public static final int GradientColor_android_gradientRadius = 5;
|
||||||
|
public static final int GradientColor_android_tileMode = 6;
|
||||||
|
public static final int GradientColor_android_centerColor = 7;
|
||||||
|
public static final int GradientColor_android_startX = 8;
|
||||||
|
public static final int GradientColor_android_startY = 9;
|
||||||
|
public static final int GradientColor_android_endX = 10;
|
||||||
|
public static final int GradientColor_android_endY = 11;
|
||||||
|
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
|
||||||
|
public static final int GradientColorItem_android_color = 0;
|
||||||
|
public static final int GradientColorItem_android_offset = 1;
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,170 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportWidth="108"
|
||||||
|
android:viewportHeight="108">
|
||||||
|
<path
|
||||||
|
android:fillColor="#008577"
|
||||||
|
android:pathData="M0,0h108v108h-108z" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M9,0L9,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,0L19,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M29,0L29,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M39,0L39,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M49,0L49,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M59,0L59,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M69,0L69,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M79,0L79,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M89,0L89,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M99,0L99,108"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,9L108,9"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,19L108,19"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,29L108,29"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,39L108,39"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,49L108,49"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,59L108,59"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,69L108,69"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,79L108,79"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,89L108,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,99L108,99"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,29L89,29"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,39L89,39"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,49L89,49"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,59L89,59"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,69L89,69"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,79L89,79"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M29,19L29,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M39,19L39,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M49,19L49,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M59,19L59,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M69,19L69,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M79,19L79,89"
|
||||||
|
android:strokeWidth="0.8"
|
||||||
|
android:strokeColor="#33FFFFFF" />
|
||||||
|
</vector>
|
Binary file not shown.
After Width: | Height: | Size: 837 B |
Binary file not shown.
After Width: | Height: | Size: 339 B |
Binary file not shown.
After Width: | Height: | Size: 411 B |
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
|
@ -0,0 +1 @@
|
||||||
|
{}
|
3229
UI/app/build/intermediates/blame/res/debug/multi-v2/debug.json
Normal file
3229
UI/app/build/intermediates/blame/res/debug/multi-v2/debug.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-af\\values-af.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-af\\values-af.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2856",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2952"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-af\\values-af.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776",
|
||||||
|
"endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79",
|
||||||
|
"endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-am\\values-am.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-am\\values-am.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738",
|
||||||
|
"endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78",
|
||||||
|
"endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-am\\values-am.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2817",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2913"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ar\\values-ar.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ar\\values-ar.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779",
|
||||||
|
"endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80",
|
||||||
|
"endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ar\\values-ar.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2860",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2956"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-as\\values-as.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-as\\values-as.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861",
|
||||||
|
"endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88",
|
||||||
|
"endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-as\\values-as.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2950",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3046"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-az\\values-az.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-az\\values-az.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2903",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2999"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-az\\values-az.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820",
|
||||||
|
"endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82",
|
||||||
|
"endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-b+sr+Latn\\values-b+sr+Latn.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828",
|
||||||
|
"endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83",
|
||||||
|
"endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2912",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3008"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-be\\values-be.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-be\\values-be.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2915",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3011"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-be\\values-be.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834",
|
||||||
|
"endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80",
|
||||||
|
"endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bg\\values-bg.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-bg\\values-bg.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2930",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3026"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-bg\\values-bg.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847",
|
||||||
|
"endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82",
|
||||||
|
"endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bn\\values-bn.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-bn\\values-bn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857",
|
||||||
|
"endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81",
|
||||||
|
"endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-bn\\values-bn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2939",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3035"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bs\\values-bs.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-bs\\values-bs.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2926",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3022"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-bs\\values-bs.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842",
|
||||||
|
"endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83",
|
||||||
|
"endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ca\\values-ca.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ca\\values-ca.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834",
|
||||||
|
"endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80",
|
||||||
|
"endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ca\\values-ca.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2915",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3011"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-cs\\values-cs.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-cs\\values-cs.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809",
|
||||||
|
"endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81",
|
||||||
|
"endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-cs\\values-cs.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2891",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2987"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-da\\values-da.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-da\\values-da.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2844",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2940"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-da\\values-da.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765",
|
||||||
|
"endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78",
|
||||||
|
"endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-de\\values-de.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-de\\values-de.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2925",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3021"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-de\\values-de.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843",
|
||||||
|
"endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81",
|
||||||
|
"endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-el\\values-el.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-el\\values-el.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879",
|
||||||
|
"endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84",
|
||||||
|
"endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-el\\values-el.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2964",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3060"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rAU\\values-en-rAU.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-en-rAU\\values-en-rAU.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764",
|
||||||
|
"endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81",
|
||||||
|
"endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-en-rAU\\values-en-rAU.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2846",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2942"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rCA\\values-en-rCA.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-en-rCA\\values-en-rCA.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2846",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2942"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-en-rCA\\values-en-rCA.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764",
|
||||||
|
"endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81",
|
||||||
|
"endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rGB\\values-en-rGB.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-en-rGB\\values-en-rGB.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764",
|
||||||
|
"endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81",
|
||||||
|
"endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-en-rGB\\values-en-rGB.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2846",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2942"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rIN\\values-en-rIN.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-en-rIN\\values-en-rIN.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764",
|
||||||
|
"endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81",
|
||||||
|
"endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-en-rIN\\values-en-rIN.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2846",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2942"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rXC\\values-en-rXC.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-en-rXC\\values-en-rXC.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503",
|
||||||
|
"endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178",
|
||||||
|
"endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-en-rXC\\values-en-rXC.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "202",
|
||||||
|
"endOffsets": "253"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "5682",
|
||||||
|
"endColumns": "202",
|
||||||
|
"endOffsets": "5880"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es-rUS\\values-es-rUS.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-es-rUS\\values-es-rUS.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838",
|
||||||
|
"endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81",
|
||||||
|
"endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-es-rUS\\values-es-rUS.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2920",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3016"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es\\values-es.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-es\\values-es.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842",
|
||||||
|
"endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81",
|
||||||
|
"endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-es\\values-es.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2924",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3020"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-et\\values-et.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-et\\values-et.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2942",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3038"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-et\\values-et.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860",
|
||||||
|
"endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81",
|
||||||
|
"endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-eu\\values-eu.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-eu\\values-eu.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856",
|
||||||
|
"endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81",
|
||||||
|
"endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-eu\\values-eu.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2938",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3034"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fa\\values-fa.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-fa\\values-fa.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2903",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2999"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-fa\\values-fa.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822",
|
||||||
|
"endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80",
|
||||||
|
"endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fi\\values-fi.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-fi\\values-fi.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792",
|
||||||
|
"endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79",
|
||||||
|
"endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-fi\\values-fi.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2872",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2968"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr-rCA\\values-fr-rCA.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-fr-rCA\\values-fr-rCA.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879",
|
||||||
|
"endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85",
|
||||||
|
"endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-fr-rCA\\values-fr-rCA.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2965",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3061"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr\\values-fr.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-fr\\values-fr.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859",
|
||||||
|
"endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85",
|
||||||
|
"endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-fr\\values-fr.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2945",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3041"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gl\\values-gl.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-gl\\values-gl.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838",
|
||||||
|
"endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81",
|
||||||
|
"endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-gl\\values-gl.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2920",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3016"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gu\\values-gu.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-gu\\values-gu.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2882",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2978"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-gu\\values-gu.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802",
|
||||||
|
"endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79",
|
||||||
|
"endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-h720dp-v13\\values-h720dp-v13.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-h720dp-v13\\values-h720dp-v13.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "66",
|
||||||
|
"endOffsets": "117"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hdpi-v4\\values-hdpi-v4.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-hdpi-v4\\values-hdpi-v4.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endLines": "6",
|
||||||
|
"endColumns": "13",
|
||||||
|
"endOffsets": "327"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hi\\values-hi.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-hi\\values-hi.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2892",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2988"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-hi\\values-hi.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812",
|
||||||
|
"endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79",
|
||||||
|
"endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hr\\values-hr.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-hr\\values-hr.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837",
|
||||||
|
"endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88",
|
||||||
|
"endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-hr\\values-hr.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2926",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3022"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hu\\values-hu.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-hu\\values-hu.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2961",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3057"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-hu\\values-hu.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878",
|
||||||
|
"endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82",
|
||||||
|
"endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hy\\values-hy.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-hy\\values-hy.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802",
|
||||||
|
"endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81",
|
||||||
|
"endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-hy\\values-hy.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2884",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2980"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-in\\values-in.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-in\\values-in.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2887",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2983"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-in\\values-in.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803",
|
||||||
|
"endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83",
|
||||||
|
"endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-is\\values-is.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-is\\values-is.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2865",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2961"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-is\\values-is.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784",
|
||||||
|
"endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80",
|
||||||
|
"endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-it\\values-it.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-it\\values-it.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2906",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3002"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-it\\values-it.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823",
|
||||||
|
"endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82",
|
||||||
|
"endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-iw\\values-iw.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-iw\\values-iw.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751",
|
||||||
|
"endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80",
|
||||||
|
"endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-iw\\values-iw.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2832",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2928"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ja\\values-ja.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ja\\values-ja.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2771",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2867"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ja\\values-ja.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693",
|
||||||
|
"endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77",
|
||||||
|
"endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ka\\values-ka.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ka\\values-ka.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818",
|
||||||
|
"endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80",
|
||||||
|
"endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ka\\values-ka.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2899",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2995"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kk\\values-kk.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-kk\\values-kk.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812",
|
||||||
|
"endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80",
|
||||||
|
"endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-kk\\values-kk.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2893",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2989"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-km\\values-km.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-km\\values-km.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799",
|
||||||
|
"endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82",
|
||||||
|
"endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-km\\values-km.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2882",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2978"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kn\\values-kn.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-kn\\values-kn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2948",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3044"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-kn\\values-kn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866",
|
||||||
|
"endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81",
|
||||||
|
"endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ko\\values-ko.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ko\\values-ko.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678",
|
||||||
|
"endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77",
|
||||||
|
"endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ko\\values-ko.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2756",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2852"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ky\\values-ky.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ky\\values-ky.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2883",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2979"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ky\\values-ky.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802",
|
||||||
|
"endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80",
|
||||||
|
"endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-land\\values-land.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-land\\values-land.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4",
|
||||||
|
"startColumns": "4,4,4",
|
||||||
|
"startOffsets": "55,125,196",
|
||||||
|
"endColumns": "69,70,67",
|
||||||
|
"endOffsets": "120,191,259"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-large-v4\\values-large-v4.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-large-v4\\values-large-v4.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "55,114,185,256,326,396,464,532,636",
|
||||||
|
"endColumns": "58,70,70,69,69,67,67,103,115",
|
||||||
|
"endOffsets": "109,180,251,321,391,459,527,631,747"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ldltr-v21\\values-ldltr-v21.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ldltr-v21\\values-ldltr-v21.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "112",
|
||||||
|
"endOffsets": "163"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lo\\values-lo.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-lo\\values-lo.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755",
|
||||||
|
"endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80",
|
||||||
|
"endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-lo\\values-lo.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2836",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2932"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lt\\values-lt.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-lt\\values-lt.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895",
|
||||||
|
"endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82",
|
||||||
|
"endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-lt\\values-lt.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2978",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3074"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lv\\values-lv.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-lv\\values-lv.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "3076",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3172"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-lv\\values-lv.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994",
|
||||||
|
"endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81",
|
||||||
|
"endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mk\\values-mk.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-mk\\values-mk.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861",
|
||||||
|
"endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83",
|
||||||
|
"endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-mk\\values-mk.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2945",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3041"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ml\\values-ml.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-ml\\values-ml.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873",
|
||||||
|
"endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81",
|
||||||
|
"endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-ml\\values-ml.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2955",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "3051"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mn\\values-mn.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-mn\\values-mn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2876",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2972"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-mn\\values-mn.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795",
|
||||||
|
"endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80",
|
||||||
|
"endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"logs": [
|
||||||
|
{
|
||||||
|
"outputFile": "D:\\Documents\\UniWork\\Year 4\\Semester 1\\CEG4912\\Project\\Vehicle Anti-Theft Face Recognition System\\UI\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mr\\values-mr.xml",
|
||||||
|
"map": [
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\697f71c0c12135256cbfe98df498a7e4\\appcompat-1.0.2\\res\\values-mr\\values-mr.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29",
|
||||||
|
"startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
|
||||||
|
"startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807",
|
||||||
|
"endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79",
|
||||||
|
"endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "C:\\Users\\batuh\\.gradle\\caches\\transforms-2\\files-2.1\\8f8ab13dc8f4e84e14a8bb3d9ac92bc4\\core-1.0.1\\res\\values-mr\\values-mr.xml",
|
||||||
|
"from": {
|
||||||
|
"startLines": "2",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "55",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "151"
|
||||||
|
},
|
||||||
|
"to": {
|
||||||
|
"startLines": "30",
|
||||||
|
"startColumns": "4",
|
||||||
|
"startOffsets": "2887",
|
||||||
|
"endColumns": "100",
|
||||||
|
"endOffsets": "2983"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue