mirror of
https://github.com/woheller69/solxpect.git
synced 2025-09-22 00:40:46 +02:00
update for Android 14 (SDK 34)
This commit is contained in:
parent
0d53115e68
commit
87905209b6
7 changed files with 6 additions and 10 deletions
|
@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
|
|||
|
||||
android {
|
||||
|
||||
compileSdkVersion 33
|
||||
compileSdk 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId "org.woheller69.solxpect"
|
||||
minSdkVersion 26
|
||||
targetSdkVersion 33
|
||||
versionCode 22
|
||||
versionName "2.2"
|
||||
targetSdk 34
|
||||
versionCode 23
|
||||
versionName "2.3"
|
||||
|
||||
buildConfigField "String", "BASE_URL", "\"https://api.open-meteo.com/v1/\""
|
||||
buildConfigField "String", "TILES_URL","\"https://tile.openstreetmap.org/\""
|
||||
|
@ -39,6 +39,6 @@ dependencies {
|
|||
implementation 'net.lingala.zip4j:zip4j:2.9.1'
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel:2.5.1" //needed due to duplicate class error
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1" //needed due to duplicate class error
|
||||
implementation 'com.github.woheller69:CompassView:a63c67da90'
|
||||
implementation 'com.github.woheller69:CompassView:948f3db329'
|
||||
implementation 'androidx.webkit:webkit:1.5.0'
|
||||
}
|
|
@ -15,7 +15,6 @@ public class AboutActivity extends NavigationActivity {
|
|||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_about);
|
||||
overridePendingTransition(0, 0);
|
||||
|
||||
((TextView) findViewById(R.id.openmeteoURL)).setMovementMethod(LinkMovementMethod.getInstance());
|
||||
((TextView) findViewById(R.id.githubURL)).setMovementMethod(LinkMovementMethod.getInstance());
|
||||
|
|
|
@ -93,7 +93,6 @@ public class ForecastCityActivity extends NavigationActivity implements IUpdatea
|
|||
super.onCreate(savedInstanceState);
|
||||
context=this;
|
||||
setContentView(R.layout.activity_forecast_city);
|
||||
overridePendingTransition(0, 0);
|
||||
|
||||
initResources();
|
||||
|
||||
|
|
|
@ -61,7 +61,6 @@ public class ManageLocationsActivity extends NavigationActivity {
|
|||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_manage_locations);
|
||||
overridePendingTransition(0, 0);
|
||||
context=this;
|
||||
database = SQLiteHelper.getInstance(getApplicationContext());
|
||||
|
||||
|
|
|
@ -81,7 +81,6 @@ public class NavigationActivity extends AppCompatActivity implements OnNavigatio
|
|||
|
||||
}
|
||||
|
||||
overridePendingTransition(0, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -41,7 +41,6 @@ public class SettingsActivity extends NavigationActivity implements SharedPrefer
|
|||
|
||||
setContentView(R.layout.activity_settings);
|
||||
|
||||
overridePendingTransition(0, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
1
fastlane/metadata/android/en-US/changelogs/23.txt
Normal file
1
fastlane/metadata/android/en-US/changelogs/23.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Update for Android 14 (SDK 34)
|
Loading…
Add table
Add a link
Reference in a new issue