Skip to content

Commit bd8133c

Browse files
committed
Fix target api level
1 parent 6bf7384 commit bd8133c

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ android {
1414
defaultConfig {
1515
applicationId = "com.httpsms"
1616
minSdk = 28
17-
targetSdk = 35
17+
targetSdk = 36
1818
versionCode = 1
1919
versionName = gitHash.getOrElse("unknown")
2020
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
android:roundIcon="@mipmap/ic_launcher_round"
3232
android:supportsRtl="true"
3333
android:theme="@style/Theme.HttpSMS"
34-
tools:targetApi="31">
34+
tools:targetApi="36">
3535
<activity
3636
android:name=".MainActivity"
3737
android:screenOrientation="portrait"

web/pages/messages/index.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<v-col cols="12" md="8" offset-md="2" xl="6" offset-xl="3">
1717
<v-form @submit.prevent="sendMessage">
1818
<v-text-field
19+
persistent-placeholder
1920
v-model="formPhoneNumber"
2021
:disabled="sending"
2122
:error="errors.has('to')"
@@ -25,6 +26,7 @@
2526
label="Phone Number"
2627
></v-text-field>
2728
<v-textarea
29+
persistent-placeholder
2830
v-model="formContent"
2931
:error="errors.has('content')"
3032
:error-messages="errors.get('content')"
@@ -34,14 +36,18 @@
3436
label="Content"
3537
></v-textarea>
3638
<v-textarea
39+
persistent-placeholder
40+
persistent-hint
3741
v-model="formAttachments"
3842
:error="errors.has('attachments')"
3943
:error-messages="errors.get('attachments')"
4044
:disabled="sending"
4145
outlined
4246
rows="2"
47+
class="mb-8"
48+
hint="Your message will be sent as an MMS when the comma separated list of attachment URL's are present"
4349
placeholder="https://example.com/image.jpg, https://example.com/video.mp4"
44-
label="Attachment URLs (comma separated, optional)"
50+
label="Attachment URLs (optional)"
4551
></v-textarea>
4652
<v-btn
4753
type="submit"

0 commit comments

Comments
 (0)