Skip to content

Commit

Permalink
works also in voip and whatsapp call
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolettieri committed Feb 16, 2021
1 parent b195767 commit 297960f
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 35 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId "com.ml.proximitysensorfix"
minSdkVersion 16
targetSdkVersion 30
versionCode 28
versionName "1.0.6"
versionCode 29
versionName "1.0.7"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.config
Expand All @@ -45,7 +45,7 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.3'
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
10 changes: 4 additions & 6 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
{
"version": 1,
"version": 2,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "com.ml.proximitysensorfix",
"variantName": "release",
"variantName": "processReleaseResources",
"elements": [
{
"type": "SINGLE",
"filters": [],
"properties": [],
"versionCode": 28,
"versionName": "1.0.6",
"enabled": true,
"versionCode": 29,
"versionName": "1.0.7",
"outputFile": "app-release.apk"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void onStepSelected(int newStepPosition) {
}

public static void goNext(){
mStepperLayout.proceed();
try{mStepperLayout.proceed();}catch (Exception ignored){}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ private void createNotificationChannel() {
);
NotificationManager manager = getSystemService(NotificationManager.class);
if(manager!=null) {
manager.deleteNotificationChannel(CHANNEL_ID);
manager.createNotificationChannel(serviceChannel);
}
}
Expand Down Expand Up @@ -75,8 +74,9 @@ public int onStartCommand(Intent intent, int flags, int startId) {
if (manager != null) {
manager.cancel(1);
}
}catch (Exception ignored){}
startForeground(1,notification);
}catch (Exception ignored){}

sm=(SensorManager)getSystemService(SENSOR_SERVICE);
Sensor proxSensor=sm.getDefaultSensor(Sensor.TYPE_PROXIMITY);
Sensor lightSensor= sm.getDefaultSensor(Sensor.TYPE_LIGHT);
Expand All @@ -102,7 +102,7 @@ public IBinder onBind(Intent intent) {
return null;
}
public boolean isCallActive(){
return audioManager.getMode() == AudioManager.MODE_IN_CALL && !audioManager.isSpeakerphoneOn();
return (audioManager.getMode() == AudioManager.MODE_IN_CALL || audioManager.getMode() == AudioManager.MODE_IN_COMMUNICATION) && !audioManager.isSpeakerphoneOn();
}

private void lockNow() {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ ext {
}// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.4.10'
ext.kotlin_version = '1.4.30'

repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.2'
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"


Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version='1.0' encoding='UTF-8'?>
<androidx.constraintlayout>
<constraintlayout-solver versions="1.1.0,1.1.1,1.1.2,1.1.3,2.0.0-alpha1,2.0.0-alpha2,2.0.0-alpha3,2.0.0-alpha4,2.0.0-alpha5,2.0.0-beta1,2.0.0-beta2,2.0.0-beta3,2.0.0-beta4,2.0.0-beta5,2.0.0-beta6,2.0.0-beta7,2.0.0-beta8,2.0.0-rc1,2.0.0,2.0.1,2.0.2,2.0.3,2.0.4"/>
<constraintlayout versions="1.1.0,1.1.1,1.1.2,1.1.3,2.0.0-alpha1,2.0.0-alpha2,2.0.0-alpha3,2.0.0-alpha4,2.0.0-alpha5,2.0.0-beta1,2.0.0-beta2,2.0.0-beta3,2.0.0-beta4,2.0.0-beta5,2.0.0-beta6,2.0.0-beta7,2.0.0-beta8,2.0.0-rc1,2.0.0,2.0.1,2.0.2,2.0.3,2.0.4,2.1.0-alpha1,2.1.0-alpha2"/>
<constraintlayout-compose versions="1.0.0-alpha01,1.0.0-alpha02"/>
<constraintlayout-core versions="1.0.0-alpha1,1.0.0-alpha2,1.0.0-alpha3"/>
<constraintlayout-solver versions="1.1.0,1.1.1,1.1.2,1.1.3,2.0.0-alpha1,2.0.0-alpha2,2.0.0-alpha3,2.0.0-alpha4,2.0.0-alpha5,2.0.0-beta1,2.0.0-beta2,2.0.0-beta3,2.0.0-beta4,2.0.0-beta5,2.0.0-beta6,2.0.0-beta7,2.0.0-beta8,2.0.0-rc1,2.0.0,2.0.1,2.0.2,2.0.3,2.0.4"/>
</androidx.constraintlayout>
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version='1.0' encoding='UTF-8'?>
<androidx.navigation>
<navigation-common versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-common-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-compose versions="1.0.0-alpha01,1.0.0-alpha02,1.0.0-alpha03,1.0.0-alpha04,1.0.0-alpha05"/>
<navigation-dynamic-features-fragment versions="2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-dynamic-features-runtime versions="2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-fragment versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-fragment-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-runtime versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-runtime-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-safe-args-generator versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-safe-args-gradle-plugin versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-testing versions="2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-ui versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-ui-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2"/>
<navigation-common versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-common-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-compose versions="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"/>
<navigation-dynamic-features-fragment versions="2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-dynamic-features-runtime versions="2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-fragment versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-fragment-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-runtime versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-runtime-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-safe-args-generator versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-safe-args-gradle-plugin versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-testing versions="2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-ui versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
<navigation-ui-ktx versions="2.0.0-rc02,2.0.0,2.1.0-alpha01,2.1.0-alpha02,2.1.0-alpha03,2.1.0-alpha04,2.1.0-alpha05,2.1.0-alpha06,2.1.0-beta01,2.1.0-beta02,2.1.0-rc01,2.1.0,2.2.0-alpha01,2.2.0-alpha02,2.2.0-alpha03,2.2.0-beta01,2.2.0-rc01,2.2.0-rc02,2.2.0-rc03,2.2.0-rc04,2.2.0,2.2.1,2.2.2,2.3.0-alpha01,2.3.0-alpha02,2.3.0-alpha03,2.3.0-alpha04,2.3.0-alpha05,2.3.0-alpha06,2.3.0-beta01,2.3.0-rc01,2.3.0,2.3.1,2.3.2,2.3.3"/>
</androidx.navigation>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='UTF-8'?>
<com.google.android.material>
<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"/>
<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"/>
<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"/>
<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"/>
</com.google.android.material>
3 changes: 3 additions & 0 deletions build/intermediates/lint-cache/maven.google/master-index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
<com.android.tools.build.jetifier/>
<com.android.tools.chunkio/>
<com.android.tools.ddms/>
<com.android.tools.emulator/>
<com.android.tools.external.com-intellij/>
<com.android.tools.external.org-jetbrains/>
<com.android.tools.fakeadbserver/>
Expand All @@ -133,13 +134,15 @@
<com.android.tools.lint/>
<com.android.tools.metalava/>
<com.android.tools.pixelprobe/>
<com.android.tools.utp/>
<com.crashlytics.sdk.android/>
<com.google.ads.afsn/>
<com.google.ads.interactivemedia.v3/>
<com.google.android.ads/>
<com.google.android.ads.consent/>
<com.google.android.apps.common.testing.accessibility.framework/>
<com.google.android.datatransport/>
<com.google.android.fhir/>
<com.google.android.games/>
<com.google.android.gms/>
<com.google.android.instantapps/>
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Dec 11 08:29:21 CET 2020
#Tue Feb 16 17:32:14 CET 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip

0 comments on commit 297960f

Please sign in to comment.