minsdk23
This commit is contained in:
+1
-1
@@ -16,7 +16,7 @@ ext {
|
||||
PUBLISH_VERSION_CODE = 11
|
||||
SUPPORT_VERSION = '25.3.1'
|
||||
TARGET_SDK = 35
|
||||
MIN_SDK = 24
|
||||
MIN_SDK = 23
|
||||
}
|
||||
|
||||
android {
|
||||
|
||||
+3
-3
@@ -8,12 +8,12 @@ android {
|
||||
namespace("com.cpm.lorealbaMabeline")
|
||||
compileSdk(35)
|
||||
defaultConfig {
|
||||
minSdkVersion 29
|
||||
minSdkVersion 23
|
||||
applicationId "com.cpm.lorealbaMabeline"
|
||||
//noinspection OldTargetApi
|
||||
targetSdk 34
|
||||
versionCode 20
|
||||
versionName "2.9"
|
||||
versionCode 21
|
||||
versionName "3.0"
|
||||
multiDexEnabled true
|
||||
useLibrary 'org.apache.http.legacy'
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
Binary file not shown.
@@ -11,8 +11,8 @@
|
||||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"versionCode": 20,
|
||||
"versionName": "2.9",
|
||||
"versionCode": 21,
|
||||
"versionName": "3.0",
|
||||
"outputFile": "app-release.apk"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -502,7 +502,7 @@ public class CounterLoginActivity extends AppCompatActivity implements View.OnCl
|
||||
try {
|
||||
PackageInfo pInfo = context.getPackageManager().getPackageInfo(getPackageName(), 0);
|
||||
String version = pInfo.versionName;
|
||||
versioncode_txt.setText("Version : " + version);
|
||||
versioncode_txt.setText("Version : " + version +"-T");
|
||||
} catch (PackageManager.NameNotFoundException e) {
|
||||
e.fillInStackTrace();
|
||||
versioncode_txt.setText("Version : 0.0");
|
||||
|
||||
@@ -294,12 +294,15 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
}
|
||||
}
|
||||
|
||||
private void isOpenDb(){
|
||||
private void isOpenDb() {
|
||||
try {
|
||||
if (!db.isOpen()) open();
|
||||
|
||||
}catch (Exception e){e.printStackTrace();}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public void deleteNotificationTableafterOneWeek() {
|
||||
try {
|
||||
isOpenDb();
|
||||
@@ -1995,19 +1998,19 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
values.put("ProductId", tStockSummary.getProductId());
|
||||
values.put("SaleableIn", tStockSummary.getSaleableIn());
|
||||
values.put("SaleableOut", tStockSummary.getSaleableOut());
|
||||
values.put("SaleableBalance", tStockSummary.getSaleableStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getSaleableBalance()==-1 ? 0 : tStockSummary.getSaleableBalance());
|
||||
values.put("SaleableBalance", tStockSummary.getSaleableStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getSaleableBalance() == -1 ? 0 : tStockSummary.getSaleableBalance());
|
||||
values.put("TesterIn", tStockSummary.getTesterIn());
|
||||
values.put("TesterOut", tStockSummary.getTesterOut());
|
||||
values.put("TesterDamage", tStockSummary.getTesterDamage());
|
||||
values.put("TesterBalance", tStockSummary.getTesterStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getTesterBalance()==-1 ? 0 :tStockSummary.getTesterBalance());
|
||||
values.put("TesterBalance", tStockSummary.getTesterStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getTesterBalance() == -1 ? 0 : tStockSummary.getTesterBalance());
|
||||
values.put("SampleIn", tStockSummary.getSampleIn());
|
||||
values.put("SampleOut", tStockSummary.getSampleOut());
|
||||
values.put("SampleDamage", tStockSummary.getSampleDamage());
|
||||
values.put("SampleBalance", tStockSummary.getSampleStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getSampleBalance()==-1 ? 0 : tStockSummary.getSampleBalance());
|
||||
values.put("SampleBalance", tStockSummary.getSampleStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getSampleBalance() == -1 ? 0 : tStockSummary.getSampleBalance());
|
||||
values.put("GwpIn", tStockSummary.getGwpIn());
|
||||
values.put("GwpOut", tStockSummary.getGwpOut());
|
||||
values.put("GwpDamage", tStockSummary.getGwpDamage());
|
||||
values.put("GwpBalance", tStockSummary.getGwpStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getGwpBalance()==-1 ? 0 : tStockSummary.getGwpBalance());
|
||||
values.put("GwpBalance", tStockSummary.getGwpStatus().trim().equalsIgnoreCase("COMPLETE") && tStockSummary.getGwpBalance() == -1 ? 0 : tStockSummary.getGwpBalance());
|
||||
values.put("SaleableStatus", tStockSummary.getSaleableStatus().trim());
|
||||
values.put("TesterStatus", tStockSummary.getTesterStatus().trim());
|
||||
values.put("SampleStatus", tStockSummary.getSampleStatus().trim());
|
||||
@@ -2609,7 +2612,7 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
}
|
||||
|
||||
|
||||
///jeevanp
|
||||
/// jeevanp
|
||||
public long deleteconsumersale(String visit_date, int reciept_count, String user_id) {
|
||||
long l = 0;
|
||||
try {
|
||||
@@ -3238,7 +3241,7 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
}
|
||||
|
||||
|
||||
///jp work
|
||||
/// jp work
|
||||
public ArrayList<ProductMaster> getproduct_masterlist(String invoice_type, String visit_date, String counterId, String userType) {
|
||||
////////test("Fetching", "Storedata--------------->Start<------------");
|
||||
ArrayList<ProductMaster> list = new ArrayList<>();
|
||||
@@ -5029,7 +5032,7 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
|
||||
isOpenDb();
|
||||
id = db.insert(CommonString.TABLE_INSERT_MANUAL_INWARD_TRANSACTION, null, values2);
|
||||
if (id > 0){
|
||||
if (id > 0) {
|
||||
isOpenDb();
|
||||
TStockSummary stockObj = getTStockSummaryProductDetails(Integer.parseInt(selected_list.get(j).getProduct_Id()));
|
||||
if (stockObj != null) {
|
||||
@@ -5103,7 +5106,7 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
return list;
|
||||
}
|
||||
|
||||
///jp_update_getSaleable Stock
|
||||
/// jp_update_getSaleable Stock
|
||||
public ProductMaster getActualSaleableStock(String productId, String coulmn_name, String visit_date, String counterId, String userType) {
|
||||
ProductMaster list = new ProductMaster();
|
||||
Cursor dbcursor = null;
|
||||
@@ -5640,7 +5643,7 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
}
|
||||
}
|
||||
|
||||
///jp changes
|
||||
/// jp changes
|
||||
public JourneyPlan getBIDfromJCP(String UserId, String CounterId) {
|
||||
JourneyPlan sb = new JourneyPlan();
|
||||
Cursor dbcursor = null;
|
||||
@@ -6144,7 +6147,7 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
}
|
||||
|
||||
|
||||
////jp get ba login tyme
|
||||
/// /jp get ba login tyme
|
||||
public LoginGetterSetter get_baLoginTym(String visit_date, String userId) {
|
||||
LoginGetterSetter sb = new LoginGetterSetter();
|
||||
Cursor dbcursor = null;
|
||||
@@ -14936,16 +14939,17 @@ public class Lorealba_Database extends SQLiteOpenHelper {
|
||||
return sb;
|
||||
}
|
||||
|
||||
public void updateStatus(String id, String counterId, String bID, String status, double latitude, double longitude) {
|
||||
public long updateStatus(String id, String counterId, String bID, String status, double latitude, double longitude) {
|
||||
ContentValues values = new ContentValues();
|
||||
try {
|
||||
values.put("GeoTag", status);
|
||||
values.put("Latitude", latitude);
|
||||
values.put("Longitude", longitude);
|
||||
db.update("Mapping_JourneyPlan", values, "StoreId" + " = " + id + " And BID = " + bID + " And CounterId = " + counterId, null);
|
||||
return db.update("Mapping_JourneyPlan", values, "StoreId" + " = " + id + " And BID = " + bID + " And CounterId = " + counterId, null);
|
||||
} catch (Exception ignored) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void updateCheckoutStatus(String counterId, String bID, String userId) {
|
||||
ContentValues values = new ContentValues();
|
||||
|
||||
@@ -818,7 +818,7 @@ public class DealarBoardActivity extends AppCompatActivity implements Navigation
|
||||
try {
|
||||
PackageInfo pInfo = context.getPackageManager().getPackageInfo(getPackageName(), 0);
|
||||
String version = pInfo.versionName;
|
||||
version_code.setText("Version : " + version);
|
||||
version_code.setText("Version : " + version +"-T");
|
||||
} catch (PackageManager.NameNotFoundException e) {
|
||||
e.fillInStackTrace();
|
||||
version_code.setText("Version : 0.0");
|
||||
|
||||
@@ -166,7 +166,7 @@ public class IMEILoginActivity extends AppCompatActivity implements GoogleApiCli
|
||||
try {
|
||||
PackageInfo pInfo = context.getPackageManager().getPackageInfo(getPackageName(), 0);
|
||||
String version = pInfo.versionName;
|
||||
versioncode_txt.setText("Version : " + version);
|
||||
versioncode_txt.setText("Version : " + version+"-T");
|
||||
} catch (PackageManager.NameNotFoundException e) {
|
||||
e.fillInStackTrace();
|
||||
versioncode_txt.setText("Version : 0.0");
|
||||
|
||||
@@ -285,7 +285,7 @@ public class UserLoginActivity extends AppCompatActivity implements View.OnClick
|
||||
try {
|
||||
PackageInfo pInfo = context.getPackageManager().getPackageInfo(getPackageName(), 0);
|
||||
String version = pInfo.versionName;
|
||||
versioncode_txt.setText("Version : " + version);
|
||||
versioncode_txt.setText("Version : " + version +"-T");
|
||||
} catch (PackageManager.NameNotFoundException e) {
|
||||
e.fillInStackTrace();
|
||||
versioncode_txt.setText("Version : 0.0");
|
||||
|
||||
@@ -968,7 +968,7 @@ public class StoreImageActivity extends AppCompatActivity implements View.OnClic
|
||||
return;
|
||||
}
|
||||
db.open();
|
||||
if (!isGeoTagAlertShown && db.getinsertGeotaggingData(storeId.toString(), counter_id, username, "Y").isEmpty()) {
|
||||
if (jcp.getGeoTag() != null && !jcp.getGeoTag().equalsIgnoreCase(CommonString.KEY_Y) && !isGeoTagAlertShown) {
|
||||
isGeoTagAlertShown = true;
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
||||
builder.setTitle(getResources().getString(R.string.dialog_title));
|
||||
|
||||
@@ -80,7 +80,6 @@ import retrofit2.Response;
|
||||
import retrofit2.Retrofit;
|
||||
import retrofit2.converter.gson.GsonConverterFactory;
|
||||
|
||||
|
||||
public class TabLoginActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
private String counterId = "", str_updated_date = "0", visitdate = "", tag_from = "", userId, passwordData, app_ver, manufacturer, model, os_version;
|
||||
private Spinner sp_sppiner;
|
||||
@@ -261,7 +260,7 @@ public class TabLoginActivity extends AppCompatActivity implements View.OnClickL
|
||||
try {
|
||||
PackageInfo pInfo = context.getPackageManager().getPackageInfo(getPackageName(), 0);
|
||||
String version = pInfo.versionName;
|
||||
versioncode_txt.setText("Version : " + version);
|
||||
versioncode_txt.setText("Version : " + version +"-T");
|
||||
} catch (PackageManager.NameNotFoundException e) {
|
||||
e.fillInStackTrace();
|
||||
versioncode_txt.setText("Version : 0.0");
|
||||
|
||||
@@ -112,9 +112,11 @@ public class GeoTaggingActivity extends AppCompatActivity implements OnMapReadyC
|
||||
if (!img_str.isEmpty()) {
|
||||
if (db.InsertSTOREgeotag(jcpGetset.getStoreId().toString(), counter_id, jcpGetset.getBID().toString(), username, latitude, longitude, img_str) > 0) {
|
||||
img_str = "";
|
||||
db.updateStatus(jcpGetset.getStoreId().toString(), jcpGetset.getCounterId().toString(),
|
||||
jcpGetset.getBID().toString(), CommonString.KEY_Y, latitude, longitude);
|
||||
if (checkNetIsAvailable(view.getContext())) {
|
||||
new GeoTagUpload().execute();
|
||||
} else {
|
||||
AlertandMessages.showToastMsg(context, getResources().getString(R.string.nonetwork));
|
||||
}
|
||||
} else {
|
||||
AlertandMessages.showToastMsg(context, "Error in saving Geotag");
|
||||
}
|
||||
@@ -469,7 +471,8 @@ public class GeoTaggingActivity extends AppCompatActivity implements OnMapReadyC
|
||||
dialog.dismiss();
|
||||
if (result != null && result.equalsIgnoreCase(CommonString.KEY_SUCCESS)) {
|
||||
db.open();
|
||||
if (db.updateInsertedGeoTagStatus(jcpGetset.getStoreId().toString(), counter_id, username, CommonString.KEY_Y) > 0) {
|
||||
if (db.updateInsertedGeoTagStatus(jcpGetset.getStoreId().toString(), counter_id, username, CommonString.KEY_Y) > 0
|
||||
&& db.updateStatus(jcpGetset.getStoreId().toString(), jcpGetset.getCounterId().toString(), jcpGetset.getBID().toString(), CommonString.KEY_Y, latitude, longitude) > 0) {
|
||||
img_str = "";
|
||||
AlertandMessages.showToastMsg(context, "Geotag Saved Successfully");
|
||||
finish();
|
||||
|
||||
@@ -388,7 +388,13 @@ PinViewActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
} else if (!allLoginData.isEmpty() && allLoginData.get(0).getMpin() != null && !pinview_confirm.getValue().equalsIgnoreCase(allLoginData.get(0).getMpin())) {
|
||||
AlertandMessages.showToastMsg(context, "Your MPIN Does Not Match From Inserted Database");
|
||||
} else {
|
||||
if (IS_PASSWORD_CHECK && Update_Visit_Date != null && Update_Visit_Date.equals("1")) {
|
||||
if (CommonFunctions.checkNetIsAvailable(context)) {
|
||||
AttempLogin();
|
||||
} else {
|
||||
AlertandMessages.showToastMsg(context, CommonString.MESSAGE_INTERNET_NOT_AVALABLE);
|
||||
}
|
||||
}
|
||||
/* if (IS_PASSWORD_CHECK && Update_Visit_Date != null && Update_Visit_Date.equals("1")) {
|
||||
if (CommonFunctions.checkNetIsAvailable(context)) {
|
||||
AttempLogin();
|
||||
} else {
|
||||
@@ -446,7 +452,7 @@ PinViewActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
finish();
|
||||
}
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
} else if (v.getId() == R.id.btn_clear) {
|
||||
hideKeyboard(this);
|
||||
@@ -618,8 +624,15 @@ PinViewActivity extends AppCompatActivity implements View.OnClickListener {
|
||||
finish();
|
||||
});
|
||||
builder.show();
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
loading.dismiss();
|
||||
Toast.makeText(context,"Success",Toast.LENGTH_SHORT).show();
|
||||
editor.putString(user_id, pinview_confirm.getValue());
|
||||
editor.putString(CommonString.KEY_USERNAME, user_id.toLowerCase());
|
||||
editor.commit();
|
||||
db.open();
|
||||
db.updateLoginMpnData(user_id, pinview_confirm.getValue());
|
||||
if (!allLoginData.isEmpty()) {
|
||||
if (allLoginData.get(0).getImg().isEmpty()) {
|
||||
startActivity(new Intent(context, StoreImageActivity.class));
|
||||
|
||||
@@ -4,7 +4,7 @@ android {
|
||||
namespace("com.androidbuts.multispinnerfilter")
|
||||
compileSdk(35)
|
||||
defaultConfig {
|
||||
minSdkVersion 24
|
||||
minSdkVersion 23
|
||||
targetSdk(35)
|
||||
}
|
||||
buildTypes {
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
o/classes
|
||||
BIN
Binary file not shown.
@@ -0,0 +1 @@
|
||||
i/
|
||||
@@ -0,0 +1 @@
|
||||
o/debug
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1 @@
|
||||
i/classes_global-synthetics
|
||||
@@ -0,0 +1 @@
|
||||
i/
|
||||
@@ -0,0 +1 @@
|
||||
i/debug_dex
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.androidbuts.multispinnerfilter" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="24" />
|
||||
<uses-sdk android:minSdkVersion="23" />
|
||||
|
||||
<application android:allowBackup="true" >
|
||||
</application>
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.androidbuts.multispinnerfilter" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="23" />
|
||||
|
||||
<application android:allowBackup="true" >
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "com.androidbuts.multispinnerfilter",
|
||||
"variantName": "debug",
|
||||
"elements": [
|
||||
{
|
||||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"outputFile": "AndroidManifest.xml"
|
||||
}
|
||||
],
|
||||
"elementType": "File"
|
||||
}
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.androidbuts.multispinnerfilter" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="24" />
|
||||
<uses-sdk android:minSdkVersion="23" />
|
||||
|
||||
<application android:allowBackup="true" >
|
||||
</application>
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
aarFormatVersion=1.0
|
||||
aarMetadataVersion=1.0
|
||||
minCompileSdk=1
|
||||
minCompileSdkExtension=0
|
||||
minAndroidGradlePluginVersion=1.0.0
|
||||
coreLibraryDesugaringEnabled=false
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,45 @@
|
||||
int attr hintText 0x0
|
||||
int color ColorPrimary 0x0
|
||||
int color ColorPrimaryDark 0x0
|
||||
int color android_text_color 0x0
|
||||
int color app_topbar_color 0x0
|
||||
int color background_color 0x0
|
||||
int color black 0x0
|
||||
int color blue 0x0
|
||||
int color cyan 0x0
|
||||
int color gray 0x0
|
||||
int color lightBlue 0x0
|
||||
int color list_background 0x0
|
||||
int color list_even 0x0
|
||||
int color list_header 0x0
|
||||
int color list_odd 0x0
|
||||
int color list_selected 0x0
|
||||
int color primary 0x0
|
||||
int color primary_dark 0x0
|
||||
int color primary_pressed 0x0
|
||||
int color red 0x0
|
||||
int color ripple 0x0
|
||||
int color text_color 0x0
|
||||
int color white 0x0
|
||||
int dimen activity_horizontal_margin 0x0
|
||||
int dimen activity_vertical_margin 0x0
|
||||
int id alertCheckbox 0x0
|
||||
int id alertSearchEditText 0x0
|
||||
int id alertSearchListView 0x0
|
||||
int id alertTextView 0x0
|
||||
int id empty 0x0
|
||||
int id listTextViewSpinner 0x0
|
||||
int id searchMultiSpinner 0x0
|
||||
int id simpleMultiSpinner 0x0
|
||||
int layout activity_main 0x0
|
||||
int layout alert_dialog_listview_search 0x0
|
||||
int layout item_listview_multiple 0x0
|
||||
int layout item_listview_single 0x0
|
||||
int layout textview_for_spinner 0x0
|
||||
int string type_to_search 0x0
|
||||
int style DialogWindowTitle 0x0
|
||||
int style MaterialSpinner 0x0
|
||||
int style myDialog 0x0
|
||||
int style myDialogTitle 0x0
|
||||
int[] styleable MultiSpinnerSearch { 0x0 }
|
||||
int styleable MultiSpinnerSearch_hintText 0
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+6
@@ -0,0 +1,6 @@
|
||||
#Fri Sep 26 18:22:07 IST 2025
|
||||
com.androidbuts.multispinnerfilter.library-main-6\:/layout/activity_main.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\debug\\layout\\activity_main.xml
|
||||
com.androidbuts.multispinnerfilter.library-main-6\:/layout/alert_dialog_listview_search.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\debug\\layout\\alert_dialog_listview_search.xml
|
||||
com.androidbuts.multispinnerfilter.library-main-6\:/layout/item_listview_single.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\debug\\layout\\item_listview_single.xml
|
||||
com.androidbuts.multispinnerfilter.library-main-6\:/layout/textview_for_spinner.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\debug\\layout\\textview_for_spinner.xml
|
||||
com.androidbuts.multispinnerfilter.library-main-6\:/layout/item_listview_multiple.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\debug\\layout\\item_listview_multiple.xml
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="DialogWindowTitle">
|
||||
<item name="android:maxLines">1</item>
|
||||
<item name="android:scrollHorizontally">true</item>
|
||||
<item name="android:textAppearance">@android:style/TextAppearance.DialogWindowTitle</item>
|
||||
</style>
|
||||
<style name="MaterialSpinner" parent="Material.Widget.Spinner">
|
||||
<item name="rd_style">@style/Material.Drawable.Ripple.Wave.Light</item>
|
||||
<item name="spn_labelEnable">true</item>
|
||||
<item name="spn_labelTextSize">18sp</item>
|
||||
<item name="spn_arrowSwitchMode">true</item>
|
||||
<item name="spn_arrowAnimDuration">@android:integer/config_shortAnimTime</item>
|
||||
<item name="spn_arrowInterpolator">@android:anim/decelerate_interpolator</item>
|
||||
</style>
|
||||
<style name="myDialog" parent="@android:style/Theme.Holo.Light.Dialog">
|
||||
<item name="android:windowTitleStyle">@style/myDialogTitle</item>
|
||||
</style>
|
||||
<style name="myDialogTitle" parent="@android:style/TextAppearance.DialogWindowTitle">
|
||||
<item name="android:gravity">center_horizontal</item>
|
||||
</style>
|
||||
<declare-styleable name="MultiSpinnerSearch">
|
||||
<attr format="string" name="hintText"/>
|
||||
</declare-styleable>
|
||||
</resources>
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ColorPrimary">#29CA97</color>
|
||||
<color name="ColorPrimaryDark">#06ACE4</color>
|
||||
<color name="android_text_color">#747474</color>
|
||||
<color name="app_topbar_color">#AAAAAA</color>
|
||||
<color name="background_color">#E1E2E2</color>
|
||||
<color name="black">#000000</color>
|
||||
<color name="blue">#1589FF</color>
|
||||
<color name="cyan">#00FFFF</color>
|
||||
<color name="gray">#D1D0CE</color>
|
||||
<color name="lightBlue">#ADD8E6</color>
|
||||
<color name="list_background">#06ACE4</color>
|
||||
<color name="list_even">#AAAAAA</color>
|
||||
<color name="list_header">#99979C</color>
|
||||
<color name="list_odd">#E1E2E2</color>
|
||||
<color name="list_selected">#455FB6</color>
|
||||
<color name="primary">#3f51b5</color>
|
||||
<color name="primary_dark">#303f9f</color>
|
||||
<color name="primary_pressed">#E1E2E2</color>
|
||||
<color name="red">#FF0000</color>
|
||||
<color name="ripple">#F06292</color>
|
||||
<color name="text_color">#686868</color>
|
||||
<color name="white">#FFFFFF</color>
|
||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||
<string name="type_to_search">Type to Search</string>
|
||||
<style name="DialogWindowTitle">
|
||||
<item name="android:maxLines">1</item>
|
||||
<item name="android:scrollHorizontally">true</item>
|
||||
<item name="android:textAppearance">@android:style/TextAppearance.DialogWindowTitle</item>
|
||||
</style>
|
||||
<style name="MaterialSpinner" parent="Widget.AppCompat.Spinner">
|
||||
<item name="rd_style">@style/Material.Drawable.Ripple.Wave.Light</item>
|
||||
<item name="spn_labelEnable">true</item>
|
||||
<item name="spn_labelTextSize">18sp</item>
|
||||
<item name="spn_arrowSwitchMode">true</item>
|
||||
<item name="spn_arrowAnimDuration">@android:integer/config_shortAnimTime</item>
|
||||
<item name="spn_arrowInterpolator">@android:anim/decelerate_interpolator</item>
|
||||
</style>
|
||||
<style name="myDialog" parent="@android:style/Theme.Holo.Light.Dialog">
|
||||
<item name="android:windowTitleStyle">@style/myDialogTitle</item>
|
||||
</style>
|
||||
<style name="myDialogTitle" parent="@android:style/TextAppearance.DialogWindowTitle">
|
||||
<item name="android:gravity">center_horizontal</item>
|
||||
</style>
|
||||
</resources>
|
||||
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\main\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\main\res"><file name="activity_main" path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\layout\activity_main.xml" qualifiers="" type="layout"/><file name="alert_dialog_listview_search" path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\layout\alert_dialog_listview_search.xml" qualifiers="" type="layout"/><file name="item_listview_multiple" path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\layout\item_listview_multiple.xml" qualifiers="" type="layout"/><file name="item_listview_single" path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\layout\item_listview_single.xml" qualifiers="" type="layout"/><file name="textview_for_spinner" path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\layout\textview_for_spinner.xml" qualifiers="" type="layout"/><file path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\values\colors.xml" qualifiers=""><color name="ColorPrimary">#29CA97</color><color name="ColorPrimaryDark">#06ACE4</color><color name="list_background">#06ACE4</color><color name="blue">#1589FF</color><color name="white">#FFFFFF</color><color name="black">#000000</color><color name="gray">#D1D0CE</color><color name="background_color">#E1E2E2</color><color name="primary">#3f51b5</color><color name="primary_pressed">#E1E2E2</color><color name="primary_dark">#303f9f</color><color name="ripple">#F06292</color><color name="red">#FF0000</color><color name="cyan">#00FFFF</color><color name="lightBlue">#ADD8E6</color><color name="text_color">#686868</color><color name="android_text_color">#747474</color><color name="app_topbar_color">#AAAAAA</color><color name="list_even">#AAAAAA</color><color name="list_odd">#E1E2E2</color><color name="list_selected">#455FB6</color><color name="list_header">#99979C</color></file><file path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\values\dimens.xml" qualifiers=""><dimen name="activity_horizontal_margin">16dp</dimen><dimen name="activity_vertical_margin">16dp</dimen></file><file path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\values\strings.xml" qualifiers=""><string name="type_to_search">Type to Search</string></file><file path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\values\styles.xml" qualifiers=""><style name="MaterialSpinner" parent="Widget.AppCompat.Spinner">
|
||||
<item name="rd_style">@style/Material.Drawable.Ripple.Wave.Light</item>
|
||||
<item name="spn_labelEnable">true</item>
|
||||
<item name="spn_labelTextSize">18sp</item>
|
||||
<item name="spn_arrowSwitchMode">true</item>
|
||||
<item name="spn_arrowAnimDuration">@android:integer/config_shortAnimTime</item>
|
||||
<item name="spn_arrowInterpolator">@android:anim/decelerate_interpolator</item>
|
||||
</style><style name="myDialog" parent="@android:style/Theme.Holo.Light.Dialog">
|
||||
<item name="android:windowTitleStyle">@style/myDialogTitle</item>
|
||||
</style><style name="myDialogTitle" parent="@android:style/TextAppearance.DialogWindowTitle">
|
||||
<item name="android:gravity">center_horizontal</item>
|
||||
</style><style name="DialogWindowTitle">
|
||||
<item name="android:maxLines">1</item>
|
||||
<item name="android:scrollHorizontally">true</item>
|
||||
<item name="android:textAppearance">@android:style/TextAppearance.DialogWindowTitle</item>
|
||||
</style></file><file path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\values-v21\attrs.xml" qualifiers="v21"><declare-styleable name="MultiSpinnerSearch">
|
||||
<attr format="string" name="hintText"/>
|
||||
</declare-styleable></file><file path="D:\LorealBa-MNY-Latest-2024\library\src\main\res\values-v21\styles.xml" qualifiers="v21"><style name="MaterialSpinner" parent="Material.Widget.Spinner">
|
||||
<item name="rd_style">@style/Material.Drawable.Ripple.Wave.Light</item>
|
||||
<item name="spn_labelEnable">true</item>
|
||||
<item name="spn_labelTextSize">18sp</item>
|
||||
<item name="spn_arrowSwitchMode">true</item>
|
||||
<item name="spn_arrowAnimDuration">@android:integer/config_shortAnimTime</item>
|
||||
<item name="spn_arrowInterpolator">@android:anim/decelerate_interpolator</item>
|
||||
</style><style name="myDialog" parent="@android:style/Theme.Holo.Light.Dialog">
|
||||
<item name="android:windowTitleStyle">@style/myDialogTitle</item>
|
||||
</style><style name="myDialogTitle" parent="@android:style/TextAppearance.DialogWindowTitle">
|
||||
<item name="android:gravity">center_horizontal</item>
|
||||
</style><style name="DialogWindowTitle">
|
||||
<item name="android:maxLines">1</item>
|
||||
<item name="android:scrollHorizontally">true</item>
|
||||
<item name="android:textAppearance">@android:style/TextAppearance.DialogWindowTitle</item>
|
||||
</style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\debug\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\debug\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\build\generated\res\resValues\debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\build\generated\res\resValues\debug"/></dataSet><mergedItems/></merger>
|
||||
@@ -1,7 +1,7 @@
|
||||
<variant
|
||||
name="release"
|
||||
package="com.androidbuts.multispinnerfilter"
|
||||
minSdkVersion="24"
|
||||
minSdkVersion="23"
|
||||
targetSdkVersion="35"
|
||||
mergedManifest="build\intermediates\merged_manifest\release\AndroidManifest.xml"
|
||||
proguardFiles="build\intermediates\default_proguard_files\global\proguard-android.txt-8.2.2;proguard-rules.txt"
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\main\jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\debug\jniLibs"/></dataSet></merger>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\main\shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\debug\shaders"/></dataSet></merger>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\main\assets"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\src\debug\assets"/></dataSet><dataSet config="generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\LorealBa-MNY-Latest-2024\library\build\intermediates\shader_assets\debug\out"/></dataSet></merger>
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
#Fri Sep 12 13:08:27 IST 2025
|
||||
#Fri Sep 26 18:24:55 IST 2025
|
||||
com.androidbuts.multispinnerfilter.library-main-5\:/layout/textview_for_spinner.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\release\\layout\\textview_for_spinner.xml
|
||||
com.androidbuts.multispinnerfilter.library-main-5\:/layout/activity_main.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\release\\layout\\activity_main.xml
|
||||
com.androidbuts.multispinnerfilter.library-main-5\:/layout/alert_dialog_listview_search.xml=D\:\\LorealBa-MNY-Latest-2024\\library\\build\\intermediates\\packaged_res\\release\\layout\\alert_dialog_listview_search.xml
|
||||
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+1
-1
@@ -3,5 +3,5 @@
|
||||
<compose-theme-adapter versions="0.1.0-dev16,0.1.0-dev17,1.0.0-alpha01,1.0.0-alpha02,1.0.0-alpha03,1.0.0-alpha04,1.0.0-alpha05,1.0.0-alpha06,1.0.0-alpha07,1.0.0-alpha08,1.0.0-alpha09,1.0.0-alpha10,1.0.0-alpha11,1.0.0-alpha12,1.0.0-beta01,1.0.0-beta02,1.0.0-beta03,1.0.0-beta04,1.0.0-beta05,1.0.0-beta06,1.0.0-beta07,1.0.0-beta08,1.0.0-beta09,1.0.0-rc01,1.0.0-rc02,1.0.0,1.0.1,1.0.2,1.0.3,1.0.4,1.0.5,1.1.0,1.1.1,1.1.2,1.1.3,1.1.4,1.1.5,1.1.6,1.1.7,1.1.8,1.1.9,1.1.10,1.1.11,1.1.12,1.1.13,1.1.14,1.1.15,1.1.16,1.1.17,1.1.18,1.1.19,1.1.20,1.1.21,1.1.22,1.2.0,1.2.1"/>
|
||||
<compose-theme-adapter-3 versions="1.0.0,1.0.1,1.0.2,1.0.3,1.0.4,1.0.5,1.0.6,1.0.7,1.0.8,1.0.9,1.0.10,1.0.11,1.0.12,1.0.13,1.0.14,1.0.15,1.0.16,1.0.17,1.0.18,1.0.19,1.0.20,1.0.21,1.0.22,1.1.0,1.1.1"/>
|
||||
<compose-theme-adapter-core versions="1.0.0,1.0.1"/>
|
||||
<material versions="1.0.0-alpha1,1.0.0-alpha3,1.0.0-beta01,1.0.0-rc01,1.0.0-rc02,1.0.0,1.1.0-alpha01,1.1.0-alpha02,1.1.0-alpha03,1.1.0-alpha04,1.1.0-alpha05,1.1.0-alpha06,1.1.0-alpha07,1.1.0-alpha08,1.1.0-alpha09,1.1.0-alpha10,1.1.0-beta01,1.1.0-beta02,1.1.0-rc01,1.1.0-rc02,1.1.0,1.2.0-alpha01,1.2.0-alpha02,1.2.0-alpha03,1.2.0-alpha04,1.2.0-alpha05,1.2.0-alpha06,1.2.0-beta01,1.2.0-rc01,1.2.0,1.2.1,1.3.0-alpha01,1.3.0-alpha02,1.3.0-alpha03,1.3.0-alpha04,1.3.0-beta01,1.3.0-rc01,1.3.0,1.4.0-alpha01,1.4.0-alpha02,1.4.0-beta01,1.4.0-rc01,1.4.0,1.5.0-alpha01,1.5.0-alpha02,1.5.0-alpha03,1.5.0-alpha04,1.5.0-alpha05,1.5.0-beta01,1.5.0-rc01,1.5.0,1.6.0-alpha01,1.6.0-alpha02,1.6.0-alpha03,1.6.0-beta01,1.6.0-rc01,1.6.0,1.6.1,1.7.0-alpha01,1.7.0-alpha02,1.7.0-alpha03,1.7.0-beta01,1.7.0-rc01,1.7.0,1.8.0-alpha01,1.8.0-alpha02,1.8.0-alpha03,1.8.0-beta01,1.8.0-rc01,1.8.0,1.9.0-alpha01,1.9.0-alpha02,1.9.0-beta01,1.9.0-rc01,1.9.0,1.10.0-alpha01,1.10.0-alpha02,1.10.0-alpha03,1.10.0-alpha04,1.10.0-alpha05,1.10.0-alpha06,1.10.0-beta01,1.10.0-rc01,1.10.0,1.11.0-alpha01,1.11.0-alpha02,1.11.0-alpha03,1.11.0-beta01,1.11.0-rc01,1.11.0,1.12.0-alpha01,1.12.0-alpha02,1.12.0-alpha03,1.12.0-beta01,1.12.0-rc01,1.12.0,1.13.0-alpha01,1.13.0-alpha02,1.13.0-alpha03,1.13.0-alpha04,1.13.0-alpha05,1.13.0-alpha06,1.13.0-alpha07,1.13.0-alpha08,1.13.0-alpha09,1.13.0-alpha10,1.13.0-alpha11,1.13.0-alpha12,1.13.0-alpha13,1.13.0-alpha14,1.13.0-beta01,1.13.0-rc01,1.13.0,1.14.0-alpha01,1.14.0-alpha02,1.14.0-alpha03,1.14.0-alpha04"/>
|
||||
<material versions="1.0.0-alpha1,1.0.0-alpha3,1.0.0-beta01,1.0.0-rc01,1.0.0-rc02,1.0.0,1.1.0-alpha01,1.1.0-alpha02,1.1.0-alpha03,1.1.0-alpha04,1.1.0-alpha05,1.1.0-alpha06,1.1.0-alpha07,1.1.0-alpha08,1.1.0-alpha09,1.1.0-alpha10,1.1.0-beta01,1.1.0-beta02,1.1.0-rc01,1.1.0-rc02,1.1.0,1.2.0-alpha01,1.2.0-alpha02,1.2.0-alpha03,1.2.0-alpha04,1.2.0-alpha05,1.2.0-alpha06,1.2.0-beta01,1.2.0-rc01,1.2.0,1.2.1,1.3.0-alpha01,1.3.0-alpha02,1.3.0-alpha03,1.3.0-alpha04,1.3.0-beta01,1.3.0-rc01,1.3.0,1.4.0-alpha01,1.4.0-alpha02,1.4.0-beta01,1.4.0-rc01,1.4.0,1.5.0-alpha01,1.5.0-alpha02,1.5.0-alpha03,1.5.0-alpha04,1.5.0-alpha05,1.5.0-beta01,1.5.0-rc01,1.5.0,1.6.0-alpha01,1.6.0-alpha02,1.6.0-alpha03,1.6.0-beta01,1.6.0-rc01,1.6.0,1.6.1,1.7.0-alpha01,1.7.0-alpha02,1.7.0-alpha03,1.7.0-beta01,1.7.0-rc01,1.7.0,1.8.0-alpha01,1.8.0-alpha02,1.8.0-alpha03,1.8.0-beta01,1.8.0-rc01,1.8.0,1.9.0-alpha01,1.9.0-alpha02,1.9.0-beta01,1.9.0-rc01,1.9.0,1.10.0-alpha01,1.10.0-alpha02,1.10.0-alpha03,1.10.0-alpha04,1.10.0-alpha05,1.10.0-alpha06,1.10.0-beta01,1.10.0-rc01,1.10.0,1.11.0-alpha01,1.11.0-alpha02,1.11.0-alpha03,1.11.0-beta01,1.11.0-rc01,1.11.0,1.12.0-alpha01,1.12.0-alpha02,1.12.0-alpha03,1.12.0-beta01,1.12.0-rc01,1.12.0,1.13.0-alpha01,1.13.0-alpha02,1.13.0-alpha03,1.13.0-alpha04,1.13.0-alpha05,1.13.0-alpha06,1.13.0-alpha07,1.13.0-alpha08,1.13.0-alpha09,1.13.0-alpha10,1.13.0-alpha11,1.13.0-alpha12,1.13.0-alpha13,1.13.0-alpha14,1.13.0-beta01,1.13.0-rc01,1.13.0,1.14.0-alpha01,1.14.0-alpha02,1.14.0-alpha03,1.14.0-alpha04,1.14.0-alpha05"/>
|
||||
</com.google.android.material>
|
||||
|
||||
+1
@@ -230,6 +230,7 @@
|
||||
<com.google.ai.client.generativeai/>
|
||||
<com.google.ai.edge.aicore/>
|
||||
<com.google.ai.edge.litert/>
|
||||
<com.google.ai.edge.litertlm/>
|
||||
<com.google.ai.edge.localagents/>
|
||||
<com.google.ambient.crossdevice/>
|
||||
<com.google.android.ads/>
|
||||
|
||||
Binary file not shown.
@@ -1,7 +1,7 @@
|
||||
<variant
|
||||
name="release"
|
||||
package="com.androidbuts.multispinnerfilter"
|
||||
minSdkVersion="24"
|
||||
minSdkVersion="23"
|
||||
targetSdkVersion="35"
|
||||
mergedManifest="build\intermediates\merged_manifest\release\AndroidManifest.xml"
|
||||
manifestMergeReport="build\outputs\logs\manifest-merger-release-report.txt"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<variant
|
||||
name="release"
|
||||
package="com.androidbuts.multispinnerfilter"
|
||||
minSdkVersion="24"
|
||||
minSdkVersion="23"
|
||||
targetSdkVersion="35"
|
||||
mergedManifest="build\intermediates\merged_manifest\release\AndroidManifest.xml"
|
||||
manifestMergeReport="build\outputs\logs\manifest-merger-release-report.txt"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user