升级sdk

This commit is contained in:
姜珂 2025-07-15 15:02:29 +08:00
parent 9625e873ff
commit 99424a67f9
27 changed files with 657 additions and 234 deletions

Binary file not shown.

Binary file not shown.

View File

@ -71,7 +71,7 @@ public class TTAdManagerHolder {
}
public static void init_not() {
LogAd.e("未进行初始化AD");
}
//step1:接入网盟广告sdk的初始化操作详情见接入文档和穿山甲平台说明

View File

@ -96,6 +96,13 @@ public final class AdApp {
if (instance == null) {
instance = new AdApp(this);
}
try {
if (getInstance().getChannel() != null && getInstance().getChannel().equals("other")) {
LogAd.setDebug(true);
}
} catch (Exception e) {
e.printStackTrace();
}
// 初始化ad SDK
if (!getInstance().getSlotConfig(ADConstants.AD_CSJID).equals("0")) {
@ -107,13 +114,8 @@ public final class AdApp {
} else {
TTAdManagerHolder.init_not();
}
}
try {
if (getInstance().getChannel() != null && getInstance().getChannel().equals("other")) {
LogAd.setDebug(true);
}
} catch (Exception e) {
e.printStackTrace();
} else {
LogAd.e("不初始化AD");
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,21 +1,30 @@
package com.tfq.finances.main.fragment;
import android.annotation.SuppressLint;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.bumptech.glide.request.target.CustomTarget;
import com.bumptech.glide.request.transition.Transition;
import com.tfq.finances.app.App;
import com.tfq.ad.ad.AdBannerUtils;
import com.tfq.ad.ad.AdCQPUtils;
import com.tfq.ad.ad.AdFeedUtils;
import com.tfq.ad.ad.AdRewardUtils;
import com.tfq.ad.ad.activity.AdSplashActivity;
import com.tfq.demo.R;
import com.tfq.finances.app.App;
import com.tfq.finances.utils.BitmapUtils;
import com.tfq.library.base.BaseFragment;
import com.tfq.library.utils.ToasterUtil;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
@ -23,6 +32,8 @@ import androidx.core.content.ContextCompat;
public class Fm_Page_A extends BaseFragment {
private FrameLayout fl_content;
@Override
protected int getLayoutId() {
return R.layout.fm_page_a;
@ -30,7 +41,17 @@ public class Fm_Page_A extends BaseFragment {
@Override
protected void initView() {
fl_content = findViewBy_Id(R.id.fl_content);
LinearLayout ll0 = findViewBy_Id(R.id.ll_0);
LinearLayout ll1 = findViewBy_Id(R.id.ll_1);
LinearLayout ll2 = findViewBy_Id(R.id.ll_2);
LinearLayout ll3 = findViewBy_Id(R.id.ll_3);
LinearLayout ll4 = findViewBy_Id(R.id.ll_4);
ll0.setOnClickListener(this::onClick);
ll1.setOnClickListener(this::onClick);
ll2.setOnClickListener(this::onClick);
ll3.setOnClickListener(this::onClick);
ll4.setOnClickListener(this::onClick);
}
@Override
@ -79,9 +100,23 @@ public class Fm_Page_A extends BaseFragment {
public void onClick(View view) {
int viewId = view.getId();
// if (viewId == R.id.iv_add) {
//
// }
if (viewId == R.id.ll_0) {
Intent intent = new Intent(requireActivity(), AdSplashActivity.class);
startActivity(intent);
} else if (viewId == R.id.ll_1) {
new AdCQPUtils().init(requireActivity());
} else if (viewId == R.id.ll_2) {
new AdRewardUtils(requireActivity(), new AdRewardUtils.Listener() {
@Override
public void success(boolean b) {
ToasterUtil.show(b ? "获取奖励成功" : "获取奖励失败");
}
}).init(requireActivity());
} else if (viewId == R.id.ll_3) {
AdFeedUtils.show_ad(getActivity(), App.getInstances().getCsjIdFeed1(), fl_content,20, "page_01",1);
} else if (viewId == R.id.ll_4) {
AdBannerUtils.show_ad(getActivity(), fl_content);
}
}
}

View File

@ -37,6 +37,9 @@ import java.util.Objects;
import androidx.activity.result.ActivityResultLauncher;
import androidx.activity.result.contract.ActivityResultContracts;
import static android.view.View.GONE;
import static android.view.View.VISIBLE;
public class Fm_Page_S extends BaseFragment {
private final ActivityResultLauncher<Intent> moreSetting = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(), result -> {
if (result.getResultCode() == Activity.RESULT_OK) {
@ -49,6 +52,7 @@ public class Fm_Page_S extends BaseFragment {
private SlideDownView slide_down_view;
private ImageView iv_avatar;
private TextView tv_nickname;
private LinearLayout ll2;
@Override
protected int getLayoutId() {
@ -58,6 +62,11 @@ public class Fm_Page_S extends BaseFragment {
@Override
protected void initView() {
iv_avatar = findViewBy_Id(R.id.iv_avatar);
LinearLayout ll0 = findViewBy_Id(R.id.ll_0);
ll0.setOnClickListener(this::onClick);
LinearLayout ll1 = findViewBy_Id(R.id.ll_1);
ll1.setOnClickListener(this::onClick);
ll2 = findViewBy_Id(R.id.ll_2);
LinearLayout ll01 = findViewBy_Id(R.id.ll_01);
ll01.setOnClickListener(this::onClick);
LinearLayout ll02 = findViewBy_Id(R.id.ll_02);
@ -149,7 +158,15 @@ public class Fm_Page_S extends BaseFragment {
Intent intent;
int viewId = view.getId();
if (viewId == R.id.ll_01) {
if (viewId == R.id.ll_0) {
slide_down_view.showFunctionBar();
} else if (viewId == R.id.ll_1) {
if ((ll2.getVisibility() == GONE)) {
ll2.setVisibility(VISIBLE);
} else {
ll2.setVisibility(GONE);
}
} else if (viewId == R.id.ll_01) {
intent = new Intent(getActivity(), Activity_Setting_More.class);
moreSetting.launch(intent);
animationStart();

View File

@ -1,6 +1,5 @@
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
@ -21,6 +20,238 @@
android:orientation="vertical"
>
<TextView
android:layout_marginTop="80dp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="AD测试"
android:textColor="#464545"
android:textSize="14sp"
android:textStyle="bold"
/>
<LinearLayout
android:id="@+id/ll_0"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="20dp"
android:layout_marginRight="15dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="开屏测试"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="插屏测试"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="激励视频测试"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_3"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="信息流测试"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_4"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="banner测试"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
</LinearLayout>
<FrameLayout

View File

@ -1,10 +1,12 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:airbnb="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/image_bg_01"
android:orientation="vertical">
android:orientation="vertical"
>
<include layout="@layout/library_layout_custom_slide_down_view" />
@ -13,7 +15,105 @@
android:layout_height="match_parent"
android:layout_above="@+id/fl_content"
android:layout_alignParentTop="true"
android:orientation="vertical">
android:orientation="vertical"
>
<LinearLayout
android:id="@+id/ll_0"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="130dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="自定义view测试"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:background="@drawable/ll_radio_rectangle11"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="13dp"
android:text="显示或隐藏底部功能"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/ll_2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:orientation="vertical"
android:visibility="gone"
>
<LinearLayout
android:layout_width="match_parent"
@ -21,19 +121,22 @@
android:layout_marginTop="54dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="24dp">
android:paddingLeft="24dp"
>
<androidx.cardview.widget.CardView
android:layout_width="50dp"
android:layout_height="50dp"
app:cardCornerRadius="50dp"
app:cardElevation="0dp">
app:cardElevation="0dp"
>
<ImageView
android:id="@+id/iv_avatar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@mipmap/ic_head" />
android:src="@mipmap/ic_head"
/>
</androidx.cardview.widget.CardView>
@ -48,12 +151,14 @@
android:text=""
android:textColor="@color/black"
android:textSize="14sp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_weight="1"
/>
<LinearLayout
android:layout_width="wrap_content"
@ -61,7 +166,8 @@
android:layout_marginRight="24dp"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone">
android:visibility="gone"
>
<TextView
android:layout_width="wrap_content"
@ -69,7 +175,8 @@
android:text="1天"
android:textColor="@color/black"
android:textSize="14dp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<TextView
android:layout_width="wrap_content"
@ -77,7 +184,8 @@
android:layout_marginTop="4dp"
android:text="记账总天数"
android:textColor="@color/black"
android:textSize="10dp" />
android:textSize="10dp"
/>
</LinearLayout>
@ -89,7 +197,8 @@
android:background="#F2F2F2"
android:orientation="vertical"
android:paddingLeft="10dp"
android:paddingRight="10dp">
android:paddingRight="10dp"
>
<LinearLayout
android:id="@+id/ll_01"
@ -100,12 +209,14 @@
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp">
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head" />
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
@ -114,17 +225,20 @@
android:text="账号设置"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right" />
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
@ -138,12 +252,14 @@
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
android:visibility="gone">
android:visibility="gone"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head" />
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
@ -152,17 +268,20 @@
android:text="个性装扮"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right" />
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
@ -175,12 +294,14 @@
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp">
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head" />
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
@ -189,17 +310,20 @@
android:text="意见反馈"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right" />
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
@ -212,12 +336,14 @@
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp">
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head" />
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
@ -226,17 +352,20 @@
android:text="导出数据"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right" />
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
@ -249,12 +378,14 @@
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp">
android:paddingRight="18dp"
>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@mipmap/ic_head" />
android:src="@mipmap/ic_head"
/>
<TextView
android:layout_width="wrap_content"
@ -263,35 +394,41 @@
android:text="关于我们"
android:textColor="#464545"
android:textSize="12sp"
android:textStyle="bold" />
android:textStyle="bold"
/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_weight="1"
/>
<ImageView
android:layout_width="20dp"
android:layout_height="12dp"
android:src="@mipmap/ic_arrow_right" />
android:src="@mipmap/ic_arrow_right"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
airbnb:lottie_autoPlay="true"
airbnb:lottie_fileName="1234.json" />
airbnb:lottie_fileName="1234.json"
/>
<org.libpag.PAGView
android:id="@+id/pag_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
android:layout_height="match_parent"
/>
<FrameLayout
android:id="@+id/fl_content"
@ -300,6 +437,7 @@
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp" />
android:layout_marginBottom="10dp"
/>
</RelativeLayout>

View File

@ -1 +1 @@
dcccbac080f5741436ad85ae8e657051
31ae7795386ce894b560e3e83ad09240

View File

@ -1 +1 @@
b4a7e464a9f87c9e4ad7f02641263f975b8d1d66
e13f8c834e5755f7dc3ed51a31e0589da862e6f0

View File

@ -1 +1 @@
4511ee6a275b8809146fe0f90f44196328a8f1596ef714c3cd640d50c1d8a6b7
ec8f2d1ad62d8fc249ce5e0d93bdb9fdcfde5e7ffe586a11ecef36f9cf3ee474

View File

@ -1 +1 @@
65e4ddca936917c3c9926dfaf342f759e0dac6fc38abebff47cc87b8beb0fe63b1579dd93c832c1b844f51ce0ad19ec4f15a6fee08d24bc96c42d14335bd9684
cab6e2ab2ada9ddf2eabaac188e79a93707ffd61e1e19c2a44132076238cdf972b121ca220273fe8c7cddd380080be4d1fd34173930b0e2e1d07de431ef8d9c8

View File

@ -8,6 +8,6 @@
<versions>
<version>1.0.0</version>
</versions>
<lastUpdated>20250709075923</lastUpdated>
<lastUpdated>20250715070058</lastUpdated>
</versioning>
</metadata>

View File

@ -1 +1 @@
b475cf6d51c8f0b2965700f4cee0e5e8
42ef1e8155ee361e3f69283439ed0bcb

View File

@ -1 +1 @@
d3866672dff4d6f00f88503af6effeb8a422f0cc
92943de8dff51ac76087ee199692bb8803954988

View File

@ -1 +1 @@
ef19c7ead094facc61d5db6d87208c061de084e951e8ccc8a9e450ddf8a0443e
014a4db2ef2adc743ce443bd17b7f22bfff180b08b6c67a7dea659303c2489e0

View File

@ -1 +1 @@
f5f41e8dfd6d18e78601fe02e2a049f2599149c5704ae1543269201cbfb48a06f71154268fa3c5ce1a56acb219f75d2a71820b696b0e0735d91ac5762ef2af6c
52c2104c116dec62436971da840fe2a20da6eedafbfb38ed5e572b3ed0ebfce15d44814e5d2df91d4993269902b07a86bdecc6446d46d10e4f8a5371a82a5201

View File

@ -8,6 +8,6 @@
<versions>
<version>1.0.0</version>
</versions>
<lastUpdated>20250709085547</lastUpdated>
<lastUpdated>20250715070055</lastUpdated>
</versioning>
</metadata>

View File

@ -1 +1 @@
75910bb2eb75453eb2a08d613fef738f
63c83b472d4cf7dccd156aca6de41507

View File

@ -1 +1 @@
d483ab25d875f84892ef0f48ad614db6b80cf02c
3b1ab9df76f2cf00ec4a94987f6e3832934aada6

View File

@ -1 +1 @@
5062af5a0f440c321b9071bebe6eb8c043f5279b66bf3e394fe7dd1e02d111e8
3e6e6d08bac26ad2e8d15264db1fa21060e86085fa94a423c46eb9ec7bd4c5fe

View File

@ -1 +1 @@
6377b9313f1df1634a13a2e49839ffbfbc693da505ee3b91ff36b8db56fc35accc443d37c6aee1530bf43367b9cb087784cff16a868f68e3f8d5b649e508c8ae
b3c41304e3c497c7578206ee7bbbca8aa8be0e6e099c6b0a068eafa05d0e4005939bc46fdae0b414933294822575ca0474a33ddd13b1d1010cac4fdba274c98d